From 1fc1cd5fd31631a23af87a09d8d5e5eddf8946a7 Mon Sep 17 00:00:00 2001 From: Serghei MIHAI Date: Wed, 3 Sep 2014 15:14:09 +0200 Subject: [PATCH] fetching urls method renamed to respect plugin's method naming convetion --- src/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/__init__.py b/src/__init__.py index 4e24a92..8777020 100644 --- a/src/__init__.py +++ b/src/__init__.py @@ -1,7 +1,7 @@ __version__ = '0.1.0' class Plugin(object): - def get_pre_urls(self): + def get_before_urls(self): from . import urls return urls.urlpatterns