From 94ae10cd3253ff1fcd547c036c6361f87cac5f3a Mon Sep 17 00:00:00 2001 From: Jan Vorlicek Date: Wed, 27 Jan 2016 17:08:40 +0100 Subject: [PATCH] Fix missing format specifier in Utilities.py The Utilities.py script was missing the `%s` format specifier in one of the prints and it was causing a build failure for me. --- src/scripts/Utilities.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/Utilities.py b/src/scripts/Utilities.py index 7fd9bc7..c1ceec8 100644 --- a/src/scripts/Utilities.py +++ b/src/scripts/Utilities.py @@ -28,7 +28,7 @@ def walk_recursively_and_update(dcmp): #delete left only files for name in dcmp.left_only: path = dcmp.left + "/" + name - print("Deleting " % (path)) + print("Deleting %s" % (path)) if os.path.isfile(path): os.remove(path) elif os.path.isdir(path): -- 2.7.4