Skip to content

Commit

Permalink
Fix Python 3.5 incompatibility.
Browse files Browse the repository at this point in the history
  • Loading branch information
csadorf committed Aug 20, 2020
1 parent 1b13dc2 commit a03cb97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_project.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def jobs(cls):
for job in cls._jobs.values():
for char in cls._invalid_chars:
if char in job._id():
raise RuntimeError(f"Invalid character in job id: {char}")
raise RuntimeError("Invalid character in job id: " + char)
yield job

@classmethod
Expand Down

0 comments on commit a03cb97

Please sign in to comment.