diff options
author | 2018-12-11 10:08:50 -0800 | |
---|---|---|
committer | 2018-12-11 10:08:50 -0800 | |
commit | 579bf0b8189cfa34a03b01cd85e2b47c3c122291 (patch) | |
tree | 8a106408f9a80e2457c4e029d0f6494767e917e1 /Python/pywarpx/WarpX.py | |
parent | 910ac4007fe9c356b45d9acf557619e61632a117 (diff) | |
parent | f8e209f4ca23e1f709a0ee3696ee1c2351e468fb (diff) | |
download | WarpX-579bf0b8189cfa34a03b01cd85e2b47c3c122291.tar.gz WarpX-579bf0b8189cfa34a03b01cd85e2b47c3c122291.tar.zst WarpX-579bf0b8189cfa34a03b01cd85e2b47c3c122291.zip |
Merge branch 'dev' into master
Diffstat (limited to 'Python/pywarpx/WarpX.py')
-rw-r--r-- | Python/pywarpx/WarpX.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pywarpx/WarpX.py b/Python/pywarpx/WarpX.py index 9c4a4b380..f58d4f111 100644 --- a/Python/pywarpx/WarpX.py +++ b/Python/pywarpx/WarpX.py @@ -70,7 +70,7 @@ class WarpX(Bucket): argv = self.create_argv_list() with open(filename, 'w') as ff: - for k, v in kw.iteritems(): + for k, v in kw.items(): ff.write('{0} = {1}\n'.format(k, v)) for arg in argv: |