Commit 5686613a authored by Andrei Vagin's avatar Andrei Vagin Committed by Pavel Emelyanov

zdtm: fix a lint warning about undefined 'raw_input'

test/zdtm.py:1238:3: F821 undefined name 'raw_input'

v2: ask to press enter, not just any key
Signed-off-by: 's avatarAndrei Vagin <avagin@virtuozzo.com>
parent 2899d58f
#!/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
......@@ -1150,7 +1150,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 Enter to continue." % what)
#
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment