diff options
author | 2018-12-07 17:27:13 -0800 | |
---|---|---|
committer | 2018-12-07 17:27:13 -0800 | |
commit | e3f1603f2fc231812122306f7c11ec7534d2500c (patch) | |
tree | 17c093963dbf83bbb3ca77ae33b8f2f5f41495ce /Python/pywarpx/WarpX.py | |
parent | a4673497ba6ddae4be1a47b9f390fcc626c48df8 (diff) | |
parent | b4a5d3be50c2db2209608904bdccdabe8684c7fb (diff) | |
download | WarpX-e3f1603f2fc231812122306f7c11ec7534d2500c.tar.gz WarpX-e3f1603f2fc231812122306f7c11ec7534d2500c.tar.zst WarpX-e3f1603f2fc231812122306f7c11ec7534d2500c.zip |
Merge pull request #36 from ECP-WarpX/picmi_diagnostics
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: |