aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/jail_prober.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/jail_prober.py b/contrib/jail_prober.py
index fcfe90eb7..070079e09 100755
--- a/contrib/jail_prober.py
+++ b/contrib/jail_prober.py
@@ -151,8 +151,8 @@ def run_firejail(program, all_args):
151 if arg: 151 if arg:
152 myargs.insert(-1, arg) 152 myargs.insert(-1, arg)
153 subprocess.call(myargs) 153 subprocess.call(myargs)
154 ans = input('Did %s run correctly? [y]/n ' % program) 154 answer = input('Did %s run correctly? [y]/n ' % program)
155 if ans in ['n', 'N']: 155 if answer in ['n', 'N']:
156 bad_args.append(arg) 156 bad_args.append(arg)
157 elif arg: 157 elif arg:
158 good_args.insert(-1, arg) 158 good_args.insert(-1, arg)