mirror of
https://github.com/django/django.git
synced 2025-07-03 17:29:12 +00:00
Fixed #21784: Correctly decode stdin input for migration defaults
This commit is contained in:
parent
78c8f84dd8
commit
625c8d2461
@ -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…
x
Reference in New Issue
Block a user