diff options
-rw-r--r-- | grs/Interpret.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grs/Interpret.py b/grs/Interpret.py index 15b6cfa..d326d9c 100644 --- a/grs/Interpret.py +++ b/grs/Interpret.py @@ -173,7 +173,7 @@ class Interpret(Daemon): # Do nothing for lines with initial # or blank lines. Create # a progress stamp only if we are not doing an update run. - if re.search(r'^(#).*$', _line) or len(_line.strip()) == 0: + if re.search(r'^(#).*$', _line) or _line.strip() == '' or _line.strip() == '+': if not self.update_run: stampit(progress) continue |