Skip to content

Commit 0666a2e

Browse files
author
Dave Bartolomeo
committed
Remove usage of f-string
1 parent a18eba2 commit 0666a2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

config/sync-files.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def file_checksum(filename):
6161
def check_group(group_name, files, master_file_picker, emit_error):
6262
extant_files = [f for f in files if path.isfile(f)]
6363
if len(extant_files) == 0:
64-
emit_error(__file__, 0, f"No files found from group '{group_name}'.")
64+
emit_error(__file__, 0, "No files found from group '" + group_name + "'.")
6565
emit_error(__file__, 0,
6666
"Create one of the following files, and then run this script with "
6767
"the --latest switch to sync it to the other file locations.")

0 commit comments

Comments
 (0)