From ff28ac995e3adb9bbb94b855d3a017b805606ccc Mon Sep 17 00:00:00 2001 From: Thomas Gak Deluen Date: Wed, 13 May 2015 13:02:32 +0100 Subject: [PATCH] fixed versioning --- rest_framework/versioning.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rest_framework/versioning.py b/rest_framework/versioning.py index 3e25af1a3..3e3024866 100644 --- a/rest_framework/versioning.py +++ b/rest_framework/versioning.py @@ -131,7 +131,7 @@ class NamespaceVersioning(BaseVersioning): return request.version + ':' + viewname -class MultipleNamespaceVersioning(versioning.NamespaceVersioning): +class MultipleNamespaceVersioning(NamespaceVersioning): """ This is the same as NamespaceVersioning, the difference is that