Changes between Initial Version and Version 1 of Ticket #29666


Ignore:
Timestamp:
Aug 13, 2018, 7:23:31 AM (6 years ago)
Author:
bw2
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #29666 – Description

    initial v1  
    11Running
     2
     3{{{
    24 echo 'bla' | python -u manage.py createsuperuser --username test --email test
     5}}}
     6
    37
    48prints
    59
    6 Superuser creation skipped due to not running in a TTY. You can run `manage.py createsuperuser` in your project to create one manually.
    710
    8 but then also shows the following error message:
     11{{{
     12Superuser creation skipped due to not running in a TTY. You can run `manage.py createsuperuser` in your project to create
     13}}}
     14
     15
     16as expected, but then also raises this error:
     17
     18{{{
    919
    1020Traceback (most recent call last):
     
    2434    self.UserModel._default_manager.db_manager(database).create_superuser(**user_data)
    2535TypeError: create_superuser() takes exactly 4 arguments (3 given)
     36}}}
Back to Top