Merge pull request #124 from benkonrath/fix-admin-500-error
Don't remove '/' from id when it's not in the path
This commit is contained in:
@@ -323,7 +323,10 @@ class PolymorphicParentModelAdmin(admin.ModelAdmin):
|
|||||||
# See if the path started with an ID.
|
# See if the path started with an ID.
|
||||||
try:
|
try:
|
||||||
pos = path.find('/')
|
pos = path.find('/')
|
||||||
object_id = long(path[0:pos])
|
if pos == -1:
|
||||||
|
object_id = long(path)
|
||||||
|
else:
|
||||||
|
object_id = long(path[0:pos])
|
||||||
except ValueError:
|
except ValueError:
|
||||||
raise Http404("No ct_id parameter, unable to find admin subclass for path '{0}'.".format(path))
|
raise Http404("No ct_id parameter, unable to find admin subclass for path '{0}'.".format(path))
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user