diff options
| author | Russell Keith-Magee <russell@keith-magee.com> | 2008-08-16 04:48:57 +0000 |
|---|---|---|
| committer | Russell Keith-Magee <russell@keith-magee.com> | 2008-08-16 04:48:57 +0000 |
| commit | 7299b397527c8774824f28db28a95803f1895583 (patch) | |
| tree | 433cfb3f099e2bfc2e2c6fd4c0ae213956ebb97f /django/db/backends/sqlite3 | |
| parent | 0345fec71bb8f9ff9ff460a63e5cc0640cc06a76 (diff) | |
Fixed #8355: Removed some whitespace that was apparently causing difficulty with script compilation. Thanks to bear330 for the report.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8402 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/db/backends/sqlite3')
| -rw-r--r-- | django/db/backends/sqlite3/creation.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/django/db/backends/sqlite3/creation.py b/django/db/backends/sqlite3/creation.py index 89178f5dab..8943854af4 100644 --- a/django/db/backends/sqlite3/creation.py +++ b/django/db/backends/sqlite3/creation.py @@ -69,5 +69,4 @@ class DatabaseCreation(BaseDatabaseCreation): def _destroy_test_db(self, test_database_name, verbosity): if test_database_name and test_database_name != ":memory:": # Remove the SQLite database file - os.remove(test_database_name) -
\ No newline at end of file + os.remove(test_database_name) |
