diff --git a/README.md b/README.md index ed39c07..639a86f 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ Add the notifications urls to your urlconf: ```python urlpatterns = [ ... - path('inbox/notifications/', include("notifications.urls", namespace='notifications')), + path('inbox/notifications/', include('notifications.urls', namespace='notifications')), ... ] ```