Hamilton Turner 10 years ago
parent
commit
752b924f22
1 changed files with 1 additions and 1 deletions
  1. 1 1
      toolset/benchmark/test_types/framework_test_type.py

+ 1 - 1
toolset/benchmark/test_types/framework_test_type.py

@@ -63,7 +63,7 @@ class FrameworkTestType:
     # Use -i to output response with headers
     # Don't use -f so that the HTTP response code is ignored.
     # Use -sS to hide progress bar, but show errors.
-    print "Accessing URL %s"
+    print "Accessing URL %s" % url
     p = subprocess.Popen(["curl", "-m", "15", "-i", "-sS", url], stderr=PIPE, stdout=PIPE)
     (out, err) = p.communicate()
     self.err.write(err+'\n')