Changes between Initial Version and Version 1 of Ticket #29666
- Timestamp:
- Aug 13, 2018, 7:23:31 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #29666 – Description
initial v1 1 1 Running 2 3 {{{ 2 4 echo 'bla' | python -u manage.py createsuperuser --username test --email test 5 }}} 6 3 7 4 8 prints 5 9 6 Superuser creation skipped due to not running in a TTY. You can run `manage.py createsuperuser` in your project to create one manually.7 10 8 but then also shows the following error message: 11 {{{ 12 Superuser creation skipped due to not running in a TTY. You can run `manage.py createsuperuser` in your project to create 13 }}} 14 15 16 as expected, but then also raises this error: 17 18 {{{ 9 19 10 20 Traceback (most recent call last): … … 24 34 self.UserModel._default_manager.db_manager(database).create_superuser(**user_data) 25 35 TypeError: create_superuser() takes exactly 4 arguments (3 given) 36 }}}