--- a/ProjectDjango/Project.py Sun Apr 23 17:20:47 2017 +0200 +++ b/ProjectDjango/Project.py Thu Apr 27 19:35:14 2017 +0200 @@ -2449,7 +2449,6 @@ args.append(self.__getPythonExecutable()) args.append("manage.py") args.append("makemigrations") - args.append("--noinput") if migration: args.append("--name") args.append(migration.replace(" ", "_")) @@ -2458,7 +2457,7 @@ if apps: args += apps - dia = DjangoDialog(title) + dia = DjangoDialog(title, showInput=True) res = dia.startProcess(args, path) if res: dia.exec_()