diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2011-02-19 07:41:17 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2011-02-19 07:41:17 +0000 |
| commit | 670f4d9628c047aac1473bffa520863f74a4614f (patch) | |
| tree | 9a45461635cd3693cf401b3e6086102fe6827ab3 | |
| parent | 34662e7a301e651df6d8e7d978b0138c3dce76e4 (diff) | |
Fixed #15327 -- Modified the Oracle test database signature method to allow for the case where TEST_USER is unspecified. Thanks to depaolim for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15568 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/db/backends/oracle/creation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/backends/oracle/creation.py b/django/db/backends/oracle/creation.py index 08b130229f..29293db20a 100644 --- a/django/db/backends/oracle/creation.py +++ b/django/db/backends/oracle/creation.py @@ -267,5 +267,5 @@ class DatabaseCreation(BaseDatabaseCreation): settings_dict['PORT'], settings_dict['ENGINE'], settings_dict['NAME'], - settings_dict['TEST_USER'], + self._test_database_user(), ) |
