Changeset 56:52422683d9a3 in stamper for stamper/stamper.py


Ignore:
Timestamp:
Nov 8, 2014, 7:22:16 PM (9 years ago)
Author:
Borja Lopez <borja@…>
Branch:
default
Phase:
public
Message:

python 3.4 compliant changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • stamper/stamper.py

    r54 r56  
    99import pygal
    1010
    11 from http import HTTPClient
     11from .http import HTTPClient
    1212
    1313
     
    402402            confirm = ''
    403403            while confirm.lower() not in ['y', 'n']:
    404                 confirm = raw_input('delete stamp? (y/n) ')
     404                confirm = input('delete stamp? (y/n) ')
    405405                confirm = confirm.lower()
    406406            if confirm == 'y':
Note: See TracChangeset for help on using the changeset viewer.