aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework/utils/breadcrumbs.py
diff options
context:
space:
mode:
authorTom Christie2012-09-04 09:29:59 +0100
committerTom Christie2012-09-04 09:29:59 +0100
commit6af75d3a69c486b19adc6e2da00719094778eb31 (patch)
tree825a2696ff5999b02b5ff338d44f3ee2cdc7ccc2 /djangorestframework/utils/breadcrumbs.py
parent6e21915934686cc7d46c8144403c933fa6fd2375 (diff)
downloaddjango-rest-framework-6af75d3a69c486b19adc6e2da00719094778eb31.tar.bz2
Remove some bits from utils
Diffstat (limited to 'djangorestframework/utils/breadcrumbs.py')
-rw-r--r--djangorestframework/utils/breadcrumbs.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/djangorestframework/utils/breadcrumbs.py b/djangorestframework/utils/breadcrumbs.py
index 319ce5f9..84dd3dfa 100644
--- a/djangorestframework/utils/breadcrumbs.py
+++ b/djangorestframework/utils/breadcrumbs.py
@@ -30,4 +30,3 @@ def get_breadcrumbs(url):
return breadcrumbs_recursive(url[:url.rfind('/') + 1], breadcrumbs_list)
return breadcrumbs_recursive(url, [])
-