Bug 1644665 - client.py: python3 migration r=egao

Depends on D79045

Differential Revision: https://phabricator.services.mozilla.com/D79046
This commit is contained in:
Sylvestre Ledru 2020-06-11 15:23:10 +00:00
Родитель e1aae2a5fc
Коммит 5ff4e8c023
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -151,7 +151,7 @@ def warn_if_patch_exists(path):
print("You must manually re-apply all patches")
print("after this script has completed!")
print("========================================")
raw_input("Press Enter to continue...")
input("Press Enter to continue...")
return
@ -178,7 +178,7 @@ except IndexError:
sys.exit(2)
if action in ('checkout', 'co'):
print >>sys.stderr, "Warning: client.py checkout is obsolete."
print("Warning: client.py checkout is obsolete.", file=sys.stderr)
pass
elif action in ('update_nspr'):
tag, = args[1:]