From 7299b397527c8774824f28db28a95803f1895583 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Sat, 16 Aug 2008 04:48:57 +0000 Subject: [PATCH] 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 --- django/db/backends/sqlite3/creation.py | 3 +-- 1 file changed, 1 insertion(+), 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)