summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2007-08-16 19:34:25 +0000
committerAdrian Holovaty <adrian@holovaty.com>2007-08-16 19:34:25 +0000
commit89ebb6177df63d17de069dfc9304e83d9b829848 (patch)
tree83c588cbbc94bedbde52b07f3f3979f291e4cb71
parentb6c3ff366ef1f59f196de48e20c3f8791da4ef91 (diff)
Removed some trailing space in commands/syncdb.py
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5909 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/core/management/commands/syncdb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/management/commands/syncdb.py b/django/core/management/commands/syncdb.py
index 982d2eca5e..d4f430c069 100644
--- a/django/core/management/commands/syncdb.py
+++ b/django/core/management/commands/syncdb.py
@@ -15,7 +15,7 @@ class Command(NoArgsCommand):
from django.db import backend, connection, transaction, models
from django.conf import settings
from django.core.management.sql import table_list, installed_models, sql_model_create, sql_for_pending_references, many_to_many_sql_for_model, custom_sql_for_model, sql_indexes_for_model, emit_post_sync_signal
-
+
verbosity = int(options.get('verbosity', 1))
interactive = options.get('interactive')