Remove extra "/" in fetched url
authorJonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Tue, 31 Mar 2020 21:03:55 +0000 (17:03 -0400)
committerJonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Tue, 31 Mar 2020 21:04:26 +0000 (17:04 -0400)
Signed-off-by: Jonathan Rajotte <jonathan.rajotte-julien@efficios.com>
scripts/babeltrace-benchmark/benchmark.py

index 901772581bd20e8c218b02e41720cb39985bb214..0c8476d0151a0d1b2573061c593d7a34877b6f42 100644 (file)
@@ -148,7 +148,7 @@ def get_benchmark_results(client, commit, workdir):
     results = {}
     benchmark_valid = True
     for b_type in BENCHMARK_TYPES:
-        prefix = "/results/benchmarks/babeltrace/{}/".format(b_type)
+        prefix = "/results/benchmarks/babeltrace/{}".format(b_type)
         result_file = get_file(client, prefix, commit, workdir)
         if not result_file:
             """
This page took 0.024139 seconds and 4 git commands to generate.