Skip to content

Commit

Permalink
Fixed a typo.
Browse files Browse the repository at this point in the history
Thanks Simon.
  • Loading branch information
aaugustin committed Dec 29, 2013
1 parent 7b88a96 commit 82aadbb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions django/contrib/auth/management/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def _check_permission_clashing(custom, builtin, ctype):
pool.add(codename)


def create_permissions(app_config, verbosity=22, interactive=True, db=DEFAULT_DB_ALIAS, **kwargs):
def create_permissions(app_config, verbosity=2, interactive=True, db=DEFAULT_DB_ALIAS, **kwargs):
if not app_config.models_module:
return

Expand Down Expand Up @@ -119,7 +119,7 @@ def create_permissions(app_config, verbosity=22, interactive=True, db=DEFAULT_DB
print("Adding permission '%s'" % perm)


def create_superuser(app_config, verbosity=22, interactive=True, db=DEFAULT_DB_ALIAS, **kwargs):
def create_superuser(app_config, verbosity=2, interactive=True, db=DEFAULT_DB_ALIAS, **kwargs):
try:
apps.get_model('auth', 'Permission')
except LookupError:
Expand Down
2 changes: 1 addition & 1 deletion django/contrib/sites/management.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from django.db.models import signals


def create_default_site(app_config, verbosity=22, interactive=True, db=DEFAULT_DB_ALIAS, **kwargs):
def create_default_site(app_config, verbosity=2, interactive=True, db=DEFAULT_DB_ALIAS, **kwargs):
try:
Site = apps.get_model('sites', 'Site')
except LookupError:
Expand Down

0 comments on commit 82aadbb

Please sign in to comment.