mirror of
https://github.com/django/django.git
synced 2025-04-05 22:16:41 +00:00
[2.0.x] Refs #28814 -- Fixed "SyntaxError: Generator expression must be parenthesized" on Python 3.7.
Due to https://bugs.python.org/issue32012. Backport of 931c60c5216bd71bc11f489e00e063331cf21f40 from master
This commit is contained in:
parent
2b3907cf74
commit
8e63cc582f
@ -162,9 +162,7 @@ class ForeignKeyRawIdWidget(forms.TextInput):
|
||||
|
||||
params = self.url_parameters()
|
||||
if params:
|
||||
related_url += '?' + '&'.join(
|
||||
'%s=%s' % (k, v) for k, v in params.items(),
|
||||
)
|
||||
related_url += '?' + '&'.join('%s=%s' % (k, v) for k, v in params.items())
|
||||
context['related_url'] = mark_safe(related_url)
|
||||
context['link_title'] = _('Lookup')
|
||||
# The JavaScript code looks for this class.
|
||||
|
Loading…
x
Reference in New Issue
Block a user