summaryrefslogtreecommitdiff
path: root/Tools/scripts/treesync.py
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-05-16 15:23:30 +0000
committerGeorg Brandl <georg@python.org>2008-05-16 15:23:30 +0000
commit4fbfa867994f444c899f0e340f8f909d6cc6d919 (patch)
treeacb7958f1b21a0f3298839060112c1ecf3544e2b /Tools/scripts/treesync.py
parent9484413bf26e00d89b1210c810f7e52fe155dd63 (diff)
downloadcpython-4fbfa867994f444c899f0e340f8f909d6cc6d919.tar.gz
Ran 2to3 over scripts directory.
Diffstat (limited to 'Tools/scripts/treesync.py')
-rwxr-xr-xTools/scripts/treesync.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/treesync.py b/Tools/scripts/treesync.py
index ff72c8c2ed..8643ee73ba 100755
--- a/Tools/scripts/treesync.py
+++ b/Tools/scripts/treesync.py
@@ -195,7 +195,7 @@ def raw_input(prompt):
def okay(prompt, answer='ask'):
answer = answer.strip().lower()
if not answer or answer[0] not in 'ny':
- answer = raw_input(prompt)
+ answer = input(prompt)
answer = answer.strip().lower()
if not answer:
answer = default_answer