Changeset 56:52422683d9a3 in stamper
- Timestamp:
- Nov 8, 2014, 7:22:16 PM (10 years ago)
- Branch:
- default
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
stamper/stamper.py
r54 r56 9 9 import pygal 10 10 11 from http import HTTPClient11 from .http import HTTPClient 12 12 13 13 … … 402 402 confirm = '' 403 403 while confirm.lower() not in ['y', 'n']: 404 confirm = raw_input('delete stamp? (y/n) ')404 confirm = input('delete stamp? (y/n) ') 405 405 confirm = confirm.lower() 406 406 if confirm == 'y':
Note:
See TracChangeset
for help on using the changeset viewer.