diff scripts/timeline_view.py @ 1555:45b469cfcd51

Scripts: score_parser.py: ignore empty rows (subject with no ratings for current song)
author Brecht De Man <b.deman@qmul.ac.uk>
date Mon, 29 Jun 2015 19:02:48 +0100
parents 276482e6215f
children 4345ba8a1b6e b7fd0296c6ab
line wrap: on
line diff
--- a/scripts/timeline_view.py	Mon Jun 29 17:19:46 2015 +0100
+++ b/scripts/timeline_view.py	Mon Jun 29 19:02:48 2015 +0100
@@ -28,7 +28,7 @@
     os.makedirs(timeline_folder)
 
 # get every XML file in folder
-for file in os.listdir(folder_name): # You have to put this script in folder where output XML files are.
+for file in os.listdir(folder_name):
     if file.endswith(".xml"):
         tree = ET.parse(folder_name + '/' + file)
         root = tree.getroot()