(urls.W005) URL namespace 'LnkIn' isn't unique. (urls.W005) URL namespace 'LnkIn' isn't unique. windows windows

(urls.W005) URL namespace 'LnkIn' isn't unique.


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')),