Changeset 5732
- Timestamp:
- 07/20/07 09:42:57 (1 year ago)
- Files:
-
- django/trunk/django/test/utils.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/test/utils.py
r5609 r5732 124 124 sys.stderr.write("Got an error creating the test database: %s\n" % e) 125 125 if not autoclobber: 126 confirm = raw_input(" It appears the test database, %s, already exists. Type 'yes' to delete it, or 'no' to cancel: " % TEST_DATABASE_NAME)126 confirm = raw_input("Type 'yes' if you would like to try deleting the test database '%s', or 'no' to cancel: " % TEST_DATABASE_NAME) 127 127 if autoclobber or confirm == 'yes': 128 128 try:
