Changeset 7598
- Timestamp:
- 06/08/08 13:18:01 (3 months ago)
- Files:
-
- django/trunk/AUTHORS (modified) (1 diff)
- django/trunk/django/contrib/auth/management/commands/createsuperuser.py (modified) (1 diff)
- django/trunk/django/contrib/auth/management/__init__.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/AUTHORS
r7595 r7598 58 58 Jökull Sólberg Auðunsson <jokullsolberg@gmail.com> 59 59 Arthur <avandorp@gmail.com> 60 av0000@mail.ru 60 61 David Avsajanishvili <avsd05@gmail.com> 61 62 axiak@mit.edu django/trunk/django/contrib/auth/management/commands/createsuperuser.py
r7590 r7598 43 43 except validators.ValidationError: 44 44 raise CommandError("Invalid email address.") 45 password = '' 45 46 password = '' 46 47 47 48 # Try to determine the current system user's username to use as a default. django/trunk/django/contrib/auth/management/__init__.py
r7590 r7598 43 43 continue 44 44 if confirm == 'yes': 45 call_command("createsuperuser" )45 call_command("createsuperuser", interactive=True) 46 46 break 47 47
