diff options
| author | Loic Bistuer <loic.bistuer@sixmedia.com> | 2013-12-13 03:23:24 +0700 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-12-14 11:59:15 -0500 |
| commit | 668571386926ff5453d0e11f59b0a89c0dc1dfa2 (patch) | |
| tree | ab2cf4f5c32d966452ef01eee93c09642f769b6a /django/db/models/sql/compiler.py | |
| parent | d599b590ebe6e2d3a60cf033de4d81c6b963bb04 (diff) | |
Fixed E127 pep8 warnings.
Diffstat (limited to 'django/db/models/sql/compiler.py')
| -rw-r--r-- | django/db/models/sql/compiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/models/sql/compiler.py b/django/db/models/sql/compiler.py index 7e48adb1d6..54d0063b9e 100644 --- a/django/db/models/sql/compiler.py +++ b/django/db/models/sql/compiler.py @@ -893,7 +893,7 @@ class SQLDeleteCompiler(SQLCompiler): parameters. """ assert len(self.query.tables) == 1, \ - "Can only delete from one table at a time." + "Can only delete from one table at a time." qn = self.quote_name_unless_alias result = ['DELETE FROM %s' % qn(self.query.tables[0])] where, params = self.query.where.as_sql(qn=qn, connection=self.connection) |
