magic-removal: Added slash at the end of ChangeList.url_for_result()

git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@1938 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-01-13 04:21:55 +00:00
parent 5e57f795b5
commit 22260f968c
2 changed files with 2 additions and 2 deletions

View File

@ -127,7 +127,7 @@ class ChangeList(object):
full_result_count, result_list, can_show_all, multi_page, paginator )
def url_for_result(self, result):
return "%s/change" % getattr(result, self.pk_attname)
return "%s/change/" % getattr(result, self.pk_attname)
def get_ordering(self):
lookup_opts, params = self.lookup_opts, self.params