summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Boersma <matt@sprout.org>2007-08-16 17:47:30 +0000
committerMatt Boersma <matt@sprout.org>2007-08-16 17:47:30 +0000
commit3e20e7cc41d6b4028b785fc9e0c93a9319fe546e (patch)
tree3a0c3dccce9ac2526f188053f44f0ee8c89260d0
parentc5505c4c8ee29f2b8f8fa174bcc9b046f975a3fd (diff)
Fixed runtests.py failing on Oracle after django.core.management was
refactored. git-svn-id: http://code.djangoproject.com/svn/django/trunk@5906 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/db/backends/oracle/creation.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/backends/oracle/creation.py b/django/db/backends/oracle/creation.py
index af498fa9ff..bc73d7ac6f 100644
--- a/django/db/backends/oracle/creation.py
+++ b/django/db/backends/oracle/creation.py
@@ -109,7 +109,7 @@ def create_test_db(settings, connection, backend, verbosity=1, autoclobber=False
settings.DATABASE_USER = TEST_DATABASE_USER
settings.DATABASE_PASSWORD = TEST_DATABASE_PASSWD
- management.syncdb(verbosity, interactive=False)
+ management.call_command('syncdb')
# Get a cursor (even though we don't need one yet). This has
# the side effect of initializing the test database.