From f412ebde1c147b43ed6df51ebe5bf15fdf46cd06 Mon Sep 17 00:00:00 2001 From: Boulder Sprinters Date: Sat, 4 Nov 2006 23:53:08 +0000 Subject: [PATCH] [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 --- django/db/backends/oracle/creation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: