diff options
author | Aaron LI <aly@aaronly.me> | 2019-02-28 20:11:30 +0800 |
---|---|---|
committer | Aaron LI <aly@aaronly.me> | 2019-02-28 20:11:30 +0800 |
commit | f5c44a03dfeffd8d0c153258292d91ee0741aa7d (patch) | |
tree | 5c08096f6f02370eae0b69000a87f1cee39c7742 /bin/fg21sim | |
parent | 31f05663791f78adf6737c53e342faf2e68b8942 (diff) | |
download | fg21sim-f5c44a03dfeffd8d0c153258292d91ee0741aa7d.tar.bz2 |
bin/fg21sim: Remove the deleted backup=True parameter
Diffstat (limited to 'bin/fg21sim')
-rwxr-xr-x | bin/fg21sim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/fg21sim b/bin/fg21sim index 3362888..b817015 100755 --- a/bin/fg21sim +++ b/bin/fg21sim @@ -62,7 +62,7 @@ def main(): # Save/backup current configurations configfile_dump = os.path.splitext(CONFIGS.userconfig)[0] + "_dump.conf" - CONFIGS.save(configfile_dump, clobber=True, backup=True) + CONFIGS.save(configfile_dump, clobber=True) logger.info("Saved current configurations to file: %s" % configfile_dump) # Setup cosmology model |