mirror of
https://github.com/datafolklabs/cement.git
synced 2026-02-06 14:26:55 +00:00
Use input() on Python 3
This commit is contained in:
parent
2f1e14e2d3
commit
a5e32a046b
@ -114,7 +114,7 @@ class CementDevtoolsController(ArgparseController):
|
||||
print("Making Release for Version %s" % VERSION)
|
||||
print('-' * 77)
|
||||
if not self.app.pargs.noprompt:
|
||||
res = raw_input("Continue? [yN] ")
|
||||
res = input("Continue? [yN] ")
|
||||
if res not in ['Y', 'y', '1']:
|
||||
sys.exit(1)
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user