Prevent market url patterns from conflicting

Addresses #683

Install instructions have people aliasing `/market/` to the alliance market app which prevents access to the market action URLs.
This commit is contained in:
Basraah 2017-01-30 16:46:35 +10:00 committed by GitHub
parent 13204a7e91
commit d7a4d06120

View File

@ -12,5 +12,5 @@ module_urls = [
]
urlpatterns = [
url(r'^market/', include(module_urls))
url(r'^evernus-market/', include(module_urls))
]