From c1243c248488603efb4a80b20017bc4480cc9ef5 Mon Sep 17 00:00:00 2001 From: John-Mark Gurney Date: Sat, 18 Jul 2020 21:25:45 -0700 Subject: [PATCH] forgot this in the 2 to 3 conversion.. --- vlanmang/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vlanmang/__init__.py b/vlanmang/__init__.py index 1ab8861..8a1f993 100644 --- a/vlanmang/__init__.py +++ b/vlanmang/__init__.py @@ -565,7 +565,7 @@ def main(): pprint.pprint([ x[1:] for x in changes ]) - res = raw_input('Apply the changes? (type yes to apply): ') + res = input('Apply the changes? (type yes to apply): ') if res != 'yes': print('not applying changes.') sys.exit(1)