From 0666a2e5871c920dd541274d9c43af828f12db6d Mon Sep 17 00:00:00 2001 From: Dave Bartolomeo Date: Thu, 4 Jun 2020 08:48:14 -0400 Subject: [PATCH] Remove usage of f-string --- config/sync-files.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/sync-files.py b/config/sync-files.py index c67a50635f61..9645d42f1e59 100644 --- a/config/sync-files.py +++ b/config/sync-files.py @@ -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.")