diff options
author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2018-03-16 10:54:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-16 10:54:34 +0100 |
commit | 362813d6287925b8f63f0b107c55a74d95f5825e (patch) | |
tree | efd69a3deb9e837624279e5abfdd8d55d57dcd7c /django/db/backends/postgresql/base.py | |
parent | aeb8c381789ad93866223f8bd07d09ae5e2edd9e (diff) | |
download | django-362813d6287925b8f63f0b107c55a74d95f5825e.tar.gz |
Fixed hanging indentation in various code.
Diffstat (limited to 'django/db/backends/postgresql/base.py')
-rw-r--r-- | django/db/backends/postgresql/base.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/django/db/backends/postgresql/base.py b/django/db/backends/postgresql/base.py index 1982a8aedb..0c060e57eb 100644 --- a/django/db/backends/postgresql/base.py +++ b/django/db/backends/postgresql/base.py @@ -263,7 +263,8 @@ class DatabaseWrapper(BaseDatabaseWrapper): nodb_connection = self.__class__( self.settings_dict.copy(), alias=self.alias, - allow_thread_sharing=False) + allow_thread_sharing=False, + ) return nodb_connection @cached_property |