From dcfab9f6f947158974ba2025ee39c25c20583552 Mon Sep 17 00:00:00 2001 From: Romain Gauthier Date: Sat, 29 Jul 2017 17:49:29 +0200 Subject: [PATCH] urls: remove new_note --- activitypub/urls.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/activitypub/urls.py b/activitypub/urls.py index cf77b39..8112892 100644 --- a/activitypub/urls.py +++ b/activitypub/urls.py @@ -1,8 +1,7 @@ from django.conf.urls import url from django.contrib import admin -from activitypub.views import person, note, new_note, notes, inbox, outbox -from activitypub.views import followers, noop +from activitypub.views import person, note, notes, inbox, outbox, followers urlpatterns = [ url(r'^@(\w+)/notes/(\w+)', note, name="note"),