changeset 1061:9ed0483f7ded

Scripts: evaluation_stats bug fixes
author Brecht De Man <BrechtDeMan@users.noreply.github.com>
date Tue, 14 Jul 2015 20:09:25 +0100
parents bf85e8def24c
children 3e84741cca7a
files scripts/evaluation_stats.py
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/evaluation_stats.py	Tue Jul 14 19:40:58 2015 +0100
+++ b/scripts/evaluation_stats.py	Tue Jul 14 20:09:25 2015 +0100
@@ -5,7 +5,7 @@
 import os
 
 # XML results files location (modify as needed):
-folder_name = "xml_with_statements"    # Looks in 'saves/' folder from 'scripts/' folder
+folder_name = "../saves"    # Looks in 'saves/' folder from 'scripts/' folder
 
 # Turn number of seconds (int) to '[minutes] min [seconds] s' (string)
 def seconds2timestr(time_in_seconds):
@@ -79,8 +79,8 @@
             number_of_pages += 1 # increase total number of pages
             time_per_page_accum += duration # total duration (for average time spent per page)
 
-    # print total duration of this test
-    print "    TOTAL: " + seconds2timestr(total_duration)
+        # print total duration of this test
+        print "    TOTAL: " + seconds2timestr(total_duration)
 
 
 # PRINT EVERYTHING