1
0
mirror of https://github.com/django/django.git synced 2025-07-05 10:19:20 +00:00

[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
This commit is contained in:
Boulder Sprinters 2006-11-04 23:53:08 +00:00
parent 05024929cf
commit f412ebde1c

View File

@ -110,7 +110,7 @@ def _destroy_test_db(cursor, dbname, verbosity):
def _execute_statements(cursor, statements, dbname, verbosity): def _execute_statements(cursor, statements, dbname, verbosity):
for template in statements: for template in statements:
stmt = template % {'user': dbname, stmt = template % {'user': dbname,
'password': "Im a lumberjack"} 'password': "Im_a_lumberjack"}
if verbosity >= 2: if verbosity >= 2:
print stmt print stmt
try: try: