Skip to content

Commit

Permalink
Capitalization in parse_dash_results
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Aug 2, 2020
1 parent c1bd69c commit 23acbf1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/parse_dash_results.py
Expand Up @@ -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

Expand Down

0 comments on commit 23acbf1

Please sign in to comment.