Commit d7c08222 by Tom Christie

Fix breadcrumb rendering issue

parent ed2cf180
......@@ -40,6 +40,12 @@ You can determine your currently installed version using `pip freeze`:
## 2.3.x series
### 2.3.1
**Date**: 7th May 2013
* Bugfix: Fix breadcrumb rendering issue.
### 2.3.0
**Date**: 7th May 2013
......
__version__ = '2.3.0'
__version__ = '2.3.1'
VERSION = __version__ # synonym
......
......@@ -24,7 +24,8 @@ def get_breadcrumbs(url):
else:
# Check if this is a REST framework view,
# and if so add it to the breadcrumbs
if issubclass(getattr(view, 'cls', None), APIView):
cls = getattr(view, 'cls', None)
if cls is not None and issubclass(cls, APIView):
# Don't list the same view twice in a row.
# Probably an optional trailing slash.
if not seen or seen[-1] != view:
......
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