summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjan Iversen <jani@documentfoundation.org>2017-01-31 13:11:39 +0100
committerjan Iversen <jani@documentfoundation.org>2017-01-31 13:11:39 +0100
commitbd5992e381753f11164c38cdac70970e98b09f52 (patch)
tree99f130674705769feb44d5b6e2a596cc1cb02e51
parent1e159bcc2a2233947ac31f0006ac22bbd230a995 (diff)
esc-mentoring, update to match change in aliases.
The new aliases can contain # lines for comment skipping these lines.
-rwxr-xr-xesc-reporting/esc-analyze.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/esc-reporting/esc-analyze.py b/esc-reporting/esc-analyze.py
index 2921beb..dd58527 100755
--- a/esc-reporting/esc-analyze.py
+++ b/esc-reporting/esc-analyze.py
@@ -74,6 +74,8 @@ def util_load_csv(fileName, split):
line = line[:-1]
if len(line) == 0:
continue
+ if line[0] == '#':
+ continue
x = line.split(split)
if split == ';' and len(x) != 3:
raise Exception('misformed entry ' + line + ' in filename ' + fileName)