Opened 6 years ago

Closed 6 years ago

Last modified 6 years ago

#29675 closed Bug (invalid)

TypeError: create_superuser() missing 1 required positional argument: 'full_name'

Reported by: varunajmera0 Owned by: nobody
Component: Uncategorized Version: 2.1
Severity: Normal Keywords:
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Tim Graham)

Traceback (most recent call last):
  File "manage.py", line 15, in <module>
    execute_from_command_line(sys.argv)
  File "/usr/local/lib/python3.7/site-packages/django/core/management/__init__.py", line 381, in execute_from_command_line
    utility.execute()
  File "/usr/local/lib/python3.7/site-packages/django/core/management/__init__.py", line 375, in execute
    self.fetch_command(subcommand).run_from_argv(self.argv)

  File "/usr/local/lib/python3.7/site-packages/django/core/management/base.py", line 316, in run_from_argv
    self.execute(*args, **cmd_options)
  File "/usr/local/lib/python3.7/site-packages/django/contrib/auth/management/commands/createsuperuser.py", line 59, in execute
    return super().execute(*args, **options)
  File "/usr/local/lib/python3.7/site-packages/django/core/management/base.py", line 353, in execute
    output = self.handle(*args, **options)
  File "/usr/local/lib/python3.7/site-packages/django/contrib/auth/management/commands/createsuperuser.py", line 184, in handle
    self.UserModel._default_manager.db_manager(database).create_superuser(**user_data)
TypeError: create_superuser() missing 1 required positional argument: 'full_name'

Change History (4)

comment:1 by varunajmera0, 6 years ago

Type: UncategorizedBug

comment:2 by Zach Bresser, 6 years ago

Varunajmera0,

We need more information. What was the full command you ran? Maybe also post the output with the --verbosity 3 flag.

comment:3 by varunajmera0, 6 years ago

Resolution: fixed
Status: newclosed

comment:4 by Tim Graham, 6 years ago

Description: modified (diff)
Resolution: fixedinvalid
Note: See TracTickets for help on using tickets.
Back to Top