From 23acbf1b5a296ca271af09ca08f6d72d73557201 Mon Sep 17 00:00:00 2001 From: Matthias Kuhn Date: Sun, 2 Aug 2020 13:54:23 +0200 Subject: [PATCH] Capitalization in parse_dash_results --- scripts/parse_dash_results.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/parse_dash_results.py b/scripts/parse_dash_results.py index 850183e920d..133da96f2cf 100755 --- a/scripts/parse_dash_results.py +++ b/scripts/parse_dash_results.py @@ -73,12 +73,12 @@ def colorDiff(c1, c2): def imageFromPath(path): if (path[:8] == 'https://' or path[:7] == 'file://'): # fetch remote image - print('fetching remote ({})'.format(path)) + print('Fetching remote ({})'.format(path)) data = urllib.request.urlopen(path).read() image = QImage() image.loadFromData(data) else: - print('using local ({})'.format(path)) + print('Using local ({})'.format(path)) image = QImage(path) return image