Fixed #21784: Correctly decode stdin input for migration defaults
This commit is contained in:
parent
2a31d00933
commit
7535e9f4a4
|
@ -97,7 +97,7 @@ class InteractiveMigrationQuestioner(MigrationQuestioner):
|
|||
print("Please enter the default value now, as valid Python")
|
||||
print("The datetime module is available, so you can do e.g. datetime.date.today()")
|
||||
while True:
|
||||
code = input(">>> ")
|
||||
code = input(">>> ").decode(sys.stdin.encoding)
|
||||
if not code:
|
||||
print("Please enter some code, or 'exit' (with no quotes) to exit.")
|
||||
elif code == "exit":
|
||||
|
|
Loading…
Reference in New Issue