1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Refs #23919 -- Removed docs references to long integers.

This commit is contained in:
Tim Graham
2017-01-19 13:19:26 -05:00
committed by GitHub
parent 9e917cc291
commit 9d27478958
5 changed files with 4 additions and 12 deletions

View File

@@ -251,7 +251,7 @@ def items_for_result(cl, result, form):
else:
url = add_preserved_filters({'preserved_filters': cl.preserved_filters, 'opts': cl.opts}, url)
# Convert the pk to something that can be used in Javascript.
# Problem cases are long ints (23L) and non-ASCII strings.
# Problem cases are non-ASCII strings.
if cl.to_field:
attr = str(cl.to_field)
else: