Unverified Kaydet (Commit) c76d8742 authored tarafından Tim Graham's avatar Tim Graham Kaydeden (comit) GitHub

Refs #23919 -- Removed obsolete comments about u'' prefixes.

üst ba76c3c4
......@@ -273,10 +273,7 @@ class Command(BaseCommand):
if params['unique']:
columns = params['columns']
if len(columns) > 1:
# we do not want to include the u"" or u'' prefix
# so we build the string rather than interpolate the tuple
tup = '(' + ', '.join("'%s'" % column_to_field_name[c] for c in columns) + ')'
unique_together.append(tup)
unique_together.append('(' + str(tuple(column_to_field_name[c] for c in columns)) + ')')
managed_comment = " # Created from a view. Don't remove." if is_view else ""
meta = ["",
" class Meta:",
......
......@@ -905,11 +905,8 @@ class AdminLogNodeTestCase(TestCase):
"""
context = Context({'user': CustomIdUser()})
template_string = '{% load log %}{% get_admin_log 10 as admin_log for_user user %}'
template = Template(template_string)
# Rendering should be u'' since this templatetag just logs,
# it doesn't render any string.
# This template tag just logs.
self.assertEqual(template.render(context), '')
def test_get_admin_log_templatetag_no_user(self):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment