diff options
| author | Alex Gaynor <alex.gaynor@gmail.com> | 2013-11-09 06:38:47 -0800 |
|---|---|---|
| committer | Alex Gaynor <alex.gaynor@gmail.com> | 2013-11-09 06:38:47 -0800 |
| commit | f4a6c9aa1309a70ca9f52bf26c3ea367bb32bd48 (patch) | |
| tree | 95632006ffe42c043d70cbefe92dae508350c416 | |
| parent | c82e850eed2eb3957ed792908b73622ebd3034a7 (diff) | |
flake8 fix
| -rw-r--r-- | django/db/backends/creation.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/django/db/backends/creation.py b/django/db/backends/creation.py index 3cf5171e48..ff62f30e71 100644 --- a/django/db/backends/creation.py +++ b/django/db/backends/creation.py @@ -44,9 +44,9 @@ class BaseDatabaseCreation(object): settings_dict['NAME'] = None backend = load_backend(settings_dict['ENGINE']) nodb_connection = backend.DatabaseWrapper( - settings_dict, - alias=NO_DB_ALIAS, - allow_thread_sharing=False) + settings_dict, + alias=NO_DB_ALIAS, + allow_thread_sharing=False) return nodb_connection @classmethod |
