summaryrefslogtreecommitdiff
path: root/django/db/backends/__init__.py
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-09-04 08:15:09 -0400
committerTim Graham <timograham@gmail.com>2014-09-05 09:22:16 -0400
commit1101467ce0756272a54f4c7bc65c4c335a94111b (patch)
treeddfd451bbc041d69284d3685e351ffc88872780e /django/db/backends/__init__.py
parentf8bb8436e533abad563b5235cf0e62e42dbc5f01 (diff)
Limited lines to 119 characters in django/
refs #23395.
Diffstat (limited to 'django/db/backends/__init__.py')
-rw-r--r--django/db/backends/__init__.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/django/db/backends/__init__.py b/django/db/backends/__init__.py
index 70e024a19b..5b3be7f86c 100644
--- a/django/db/backends/__init__.py
+++ b/django/db/backends/__init__.py
@@ -466,7 +466,10 @@ class BaseDatabaseWrapper(object):
"""
Only required when autocommits_when_autocommit_is_off = True.
"""
- raise NotImplementedError('subclasses of BaseDatabaseWrapper may require a _start_transaction_under_autocommit() method')
+ raise NotImplementedError(
+ 'subclasses of BaseDatabaseWrapper may require a '
+ '_start_transaction_under_autocommit() method'
+ )
def schema_editor(self, *args, **kwargs):
"Returns a new instance of this backend's SchemaEditor"