aboutsummaryrefslogtreecommitdiff
path: root/glifestream/bookmarklet/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'glifestream/bookmarklet/urls.py')
-rw-r--r--glifestream/bookmarklet/urls.py11
1 files changed, 5 insertions, 6 deletions
diff --git a/glifestream/bookmarklet/urls.py b/glifestream/bookmarklet/urls.py
index 8611725..7f962ac 100644
--- a/glifestream/bookmarklet/urls.py
+++ b/glifestream/bookmarklet/urls.py
@@ -13,11 +13,10 @@
# You should have received a copy of the GNU General Public License along
# with this program. If not, see <http://www.gnu.org/licenses/>.
-from django.conf.urls import patterns, url
+from django.conf.urls import url
from glifestream.bookmarklet import views
-urlpatterns = patterns(
- '',
- (r'js$', views.js),
- (r'frame$', views.frame),
-)
+urlpatterns = [
+ url(r'js$', views.js),
+ url(r'frame$', views.frame),
+]

Return to:

Send suggestions and report system problems to the System administrator.