Skip to content

Commit

Permalink
Remove usage of f-string
Browse files Browse the repository at this point in the history
  • Loading branch information
dbartol committed Jun 4, 2020
1 parent a18eba2 commit 0666a2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/sync-files.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def file_checksum(filename):
def check_group(group_name, files, master_file_picker, emit_error):
extant_files = [f for f in files if path.isfile(f)]
if len(extant_files) == 0:
emit_error(__file__, 0, f"No files found from group '{group_name}'.")
emit_error(__file__, 0, "No files found from group '" + group_name + "'.")
emit_error(__file__, 0,
"Create one of the following files, and then run this script with "
"the --latest switch to sync it to the other file locations.")
Expand Down

0 comments on commit 0666a2e

Please sign in to comment.