diff options
author | 2017-05-22 15:56:15 -0700 | |
---|---|---|
committer | 2017-05-22 15:56:15 -0700 | |
commit | 660bf6e1bb25d1e8c47bb33f7225692c456c7fdf (patch) | |
tree | 68ec52294f6ed33667bbfcdb4e3805854b07769d /Python/pywarpx/AMReX.py | |
parent | 5404acf864e72b6f10727fd5c1493ee59c555395 (diff) | |
download | WarpX-660bf6e1bb25d1e8c47bb33f7225692c456c7fdf.tar.gz WarpX-660bf6e1bb25d1e8c47bb33f7225692c456c7fdf.tar.zst WarpX-660bf6e1bb25d1e8c47bb33f7225692c456c7fdf.zip |
Bug fixes in Python wrapper
Diffstat (limited to 'Python/pywarpx/AMReX.py')
-rw-r--r-- | Python/pywarpx/AMReX.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pywarpx/AMReX.py b/Python/pywarpx/AMReX.py index 0cf9290b8..dac675129 100644 --- a/Python/pywarpx/AMReX.py +++ b/Python/pywarpx/AMReX.py @@ -15,7 +15,7 @@ from ._libwarpx import amrex_init class AMReX(object): def init(self): - argv = [] + argv = ['warpx'] argv += warpx.attrlist() argv += amr.attrlist() argv += geometry.attrlist() |