[Django]-(urls.W005) URL namespace 'LnkIn' isn't unique.

32👍

You are importing LnkdIn.urls twice to your application urlpatterns.

You should only do it once, so choose either one from the section below

url(r'^LnkdIn/', include('LnkdIn.urls')),

or

url(r'^', include('LnkdIn.urls')),

Leave a comment