diff options
author | Guillaume Rousse <guillomovitch@mandriva.org> | 2007-06-15 16:18:50 +0000 |
---|---|---|
committer | Guillaume Rousse <guillomovitch@mandriva.org> | 2007-06-15 16:18:50 +0000 |
commit | d0e98725980532693aae79c7ca0792b1253a36ae (patch) | |
tree | c009239738cdffeb2e375b5efb1cc787abf3011e /gprintify.py | |
parent | 488d4e371c95e3ff7b16b31db3f8310868552062 (diff) | |
download | spec-helper-d0e98725980532693aae79c7ca0792b1253a36ae.tar spec-helper-d0e98725980532693aae79c7ca0792b1253a36ae.tar.gz spec-helper-d0e98725980532693aae79c7ca0792b1253a36ae.tar.bz2 spec-helper-d0e98725980532693aae79c7ca0792b1253a36ae.tar.xz spec-helper-d0e98725980532693aae79c7ca0792b1253a36ae.zip |
don't mess with daemon argument
Diffstat (limited to 'gprintify.py')
-rwxr-xr-x | gprintify.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gprintify.py b/gprintify.py index 4a60104..b1e8a0a 100755 --- a/gprintify.py +++ b/gprintify.py @@ -17,7 +17,7 @@ import re echo_regex=re.compile('^(.*)echo +(-[en]+)?') string_regex=re.compile('^([^"]*?)\$?"([^"]*[^\\\\])"([^>\|\[\]]*|.*\|\|.*)$') var_regex=re.compile('(\$[a-zA-Z0-9_{}]+(?:\[\$[a-zA-Z0-9_{}]+\])?}?)') -init_func_regex=re.compile('(.*(daemon|action|success|failure|passed)\s*.*)') +init_func_regex=re.compile('(.*(action|success|failure|passed)\s*.*)') def process_start(start): res=echo_regex.findall(start) |