From 585c484be039d68e3dc6200d4296316a18eb6fef Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 10 Mar 2018 07:42:45 +1100 Subject: [PATCH] Tools: fixed syntax error in build_binaries.py --- Tools/scripts/build_binaries.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Tools/scripts/build_binaries.py b/Tools/scripts/build_binaries.py index aa583c5531..ae314f2aab 100755 --- a/Tools/scripts/build_binaries.py +++ b/Tools/scripts/build_binaries.py @@ -410,8 +410,7 @@ is bob we will attempt to checkout bob-AVR''' try: self.copyit(path, ddir, tag, vehicle) except Exception as e: - self.progress("Failed to copy %s to %s: %s", - path, ddir, str(e)) + self.progress("Failed to copy %s to %s: %s" % (path, ddir, str(e))) # why is touching this important? -pb20170816 self.touch_filepath(os.path.join(self.binaries, vehicle_binaries_subdir, tag))