Skip to content

Commit

Permalink
Fixed bug in string formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
pchakraborty committed May 13, 2024
1 parent 116c6fa commit 29dbda7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mepo/state.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def get_file(cls, old_style=False):
if os.path.exists(state_file):
return state_file
else:
raise OSError("mepo state file [{state_file}] does not exist")
raise OSError(f"mepo state file [{state_file}] does not exist")

@classmethod
def state_exists(cls, old_style=False):
Expand Down

0 comments on commit 29dbda7

Please sign in to comment.