[CRIU] [PATCH] zdtm: fix a lint warning about undefined 'raw_input'
Andrei Vagin
avagin at virtuozzo.com
Tue Jun 12 23:51:47 MSK 2018
test/zdtm.py:1238:3: F821 undefined name 'raw_input'
Signed-off-by: Andrei Vagin <avagin at virtuozzo.com>
---
test/zdtm.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/test/zdtm.py b/test/zdtm.py
index 1e193b2f9..64046576c 100755
--- a/test/zdtm.py
+++ b/test/zdtm.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
# vim: noet ts=8 sw=8 sts=8
from __future__ import absolute_import, division, print_function, unicode_literals
-from builtins import (str, open, range, zip, int)
+from builtins import (str, open, range, zip, int, input)
import argparse
import glob
@@ -1235,7 +1235,7 @@ def init_sbs():
def sbs(what):
if do_sbs:
- raw_input("Pause at %s. Press any key to continue." % what)
+ input("Pause at %s. Press any key to continue." % what)
#
--
2.14.3
More information about the CRIU
mailing list