From dfbc38ca93e107146c24121cade975789a7e984a Mon Sep 17 00:00:00 2001 From: "Anthony G. Basile" Date: Fri, 9 Oct 2015 21:24:17 -0400 Subject: grs/Interpret.py: skip blank lines with leading + --- grs/Interpret.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'grs') 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 -- cgit v1.2.3-18-g5258