Skip to content

Commit baf18a4

Browse files
committedMay 5, 2020
Fix parse dash results
1 parent a5f557f commit baf18a4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed
 

‎scripts/parse_dash_results.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33

44
"""
5-
****************************3***********************************************
5+
***************************************************************************
66
parse_dash_results.py
77
---------------------
88
Date : October 2016
@@ -367,7 +367,7 @@ def main():
367367
app = QApplication(sys.argv)
368368

369369
parser = argparse.ArgumentParser(
370-
description='''A tool to automatically update test image masks based on results submitted to cdash.
370+
description='''A tool to automatically update test image masks based on results submitted to cdash.
371371
372372
It will take local control images from the QGIS source and rendered images from test results
373373
on cdash to create a mask.
@@ -377,10 +377,10 @@ def main():
377377
378378
If the resulting mask is too tolerant, consider adding a new control image next to the existing one.
379379
''')
380-
parser.add_argument('dash_url', help='URL to a dash result with images. E.g. https://cdash.orfeo-toolbox.org/testDetails.php?test=15052561&build=27712'))
381-
args=parser.parse_args()
380+
parser.add_argument('dash_url', help='URL to a dash result with images. E.g. https://cdash.orfeo-toolbox.org/testDetails.php?test=15052561&build=27712')
381+
args = parser.parse_args()
382382

383-
w=ResultHandler()
383+
w = ResultHandler()
384384
w.parse_url(args.dash_url)
385385
w.exec_()
386386

0 commit comments

Comments
 (0)
Please sign in to comment.