diff options
author | 2018-11-02 17:53:37 -0700 | |
---|---|---|
committer | 2018-11-02 17:53:37 -0700 | |
commit | 612857dc6a1428fc94e1251a5024953bcf25623b (patch) | |
tree | d5e6847cf4e5ef8e67a84792d94cf319e69a8f67 /Python/pywarpx/WarpX.py | |
parent | 7807bed259ac22eec7812d1ca577e48b845c3b0d (diff) | |
download | WarpX-612857dc6a1428fc94e1251a5024953bcf25623b.tar.gz WarpX-612857dc6a1428fc94e1251a5024953bcf25623b.tar.zst WarpX-612857dc6a1428fc94e1251a5024953bcf25623b.zip |
First draft of picmi diagnostics
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: |