Skip to content

Commit

Permalink
Replace raw_input with input
Browse files Browse the repository at this point in the history
This has never worked on python 3.
  • Loading branch information
timj committed Jan 19, 2024
1 parent 4e44454 commit bf42bfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/eups/Eups.py
Original file line number Diff line number Diff line change
Expand Up @@ -3270,7 +3270,7 @@ def remove(self, productName, versionName, recursive=False, checkRecursive=False
if interactive:
yn = default_yn
while yn != "!":
yn = raw_input("Remove %s %s: (ynq!) [%s] " % (product.name, product.version, default_yn))
yn = input("Remove %s %s: (ynq!) [%s] " % (product.name, product.version, default_yn))

if yn == "":
yn = default_yn
Expand Down

0 comments on commit bf42bfe

Please sign in to comment.