mirror of
https://github.com/django/django.git
synced 2025-08-31 15:57:45 +00:00
Removed unnecessary string formatting of strings.
This commit is contained in:
parent
885cb0d390
commit
ad7aa02c1d
3 changed files with 4 additions and 4 deletions
|
@ -807,7 +807,7 @@ class Ref(Expression):
|
|||
return self
|
||||
|
||||
def as_sql(self, compiler, connection):
|
||||
return "%s" % connection.ops.quote_name(self.refs), []
|
||||
return connection.ops.quote_name(self.refs), []
|
||||
|
||||
def get_group_by_cols(self):
|
||||
return [self]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue