Fix missing format specifier in Utilities.py
authorJan Vorlicek <janvorli@microsoft.com>
Wed, 27 Jan 2016 16:08:40 +0000 (17:08 +0100)
committerJan Vorlicek <janvorli@microsoft.com>
Wed, 27 Jan 2016 16:08:40 +0000 (17:08 +0100)
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

index 7fd9bc7..c1ceec8 100644 (file)
@@ -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):