Commit 7535e9f4 authored by Andrew Godwin's avatar Andrew Godwin
Browse files

Fixed #21784: Correctly decode stdin input for migration defaults

parent 2a31d009
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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":