diff options
| author | Boulder Sprinters <boulder-sprinters@djangoproject.com> | 2006-11-04 23:53:08 +0000 |
|---|---|---|
| committer | Boulder Sprinters <boulder-sprinters@djangoproject.com> | 2006-11-04 23:53:08 +0000 |
| commit | f412ebde1c147b43ed6df51ebe5bf15fdf46cd06 (patch) | |
| tree | 8cd24774d44a1cacd1802a6ddd1d569d27c5d6b6 | |
| parent | 05024929cf720e03361be6b998a2acb7ec8453d9 (diff) | |
[boulder-oracle-sprint] no spaces in the password
git-svn-id: http://code.djangoproject.com/svn/django/branches/boulder-oracle-sprint@4006 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 9264f1354a..85a8ca6547 100644 --- a/django/db/backends/oracle/creation.py +++ b/django/db/backends/oracle/creation.py @@ -110,7 +110,7 @@ def _destroy_test_db(cursor, dbname, verbosity): def _execute_statements(cursor, statements, dbname, verbosity): for template in statements: stmt = template % {'user': dbname, - 'password': "Im a lumberjack"} + 'password': "Im_a_lumberjack"} if verbosity >= 2: print stmt try: |
