29👍
Maybe this is because there was an error while running Django. Sometimes it happens that the std input disappears because stty
was used. You can manually hide your input by typing:
$ stty -echo
Now you won’t see what you typed. To restore this and solve your problem just type
$ stty echo
This could help.
👤cb0
3👍
If you exit pdb you can type reset and standard input echo will return. I’m not sure if you can execute something similar within pdb. It will erase what is currently displayed however.
-1👍
Try installing readline on Mac OS X:
$ sudo easy_install readline
This is a blind guess, but perhaps it solves your problem.
👤reto
- How to make a new line in django messages.error
- The default "delete selected" admin action in Django
- How to do Django JSON Web Token Authentication without forcing the user to re-type their password?
Source:stackexchange.com