diff options
-rw-r--r-- | steuermann/run_all.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/steuermann/run_all.py b/steuermann/run_all.py index c47d1ff..fa3e647 100644 --- a/steuermann/run_all.py +++ b/steuermann/run_all.py @@ -146,12 +146,14 @@ def cmd_flagging( l, xnodes, func ) : if l[1] == '-r' : recursive = 1 l = l[2:] + verbose = 0 else : recursive = 0 l = l[1:] + verbose = 1 for x in l : - do_flag( xnodes, x, recursive, func, 1 ) + do_flag( xnodes, x, recursive, func, verbose ) # |