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)