Skip to content

Commit

Permalink
Fix string formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
uvchik committed Mar 2, 2021
1 parent e59836b commit 4ba31ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/deflex/scenario.py
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ def restore_scenario(filename, scenario_class=DeflexScenario):
raise IOError(msg)
f = open(filename, "rb")
meta = pickle.load(f)
logging.info("Meta information:\n%s" % pp.pformat(meta))
logging.info("Meta information:\n %s" % pp.pformat(meta))
sc = scenario_class()
sc.__dict__ = pickle.load(f)
f.close()
Expand Down

0 comments on commit 4ba31ad

Please sign in to comment.