From d7a4d06120a7168412e5cf30b5e8fa45a1175f9b Mon Sep 17 00:00:00 2001 From: Basraah Date: Mon, 30 Jan 2017 16:46:35 +1000 Subject: [PATCH] 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. --- services/modules/market/urls.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/modules/market/urls.py b/services/modules/market/urls.py index b0ebdea2..139418ae 100644 --- a/services/modules/market/urls.py +++ b/services/modules/market/urls.py @@ -12,5 +12,5 @@ module_urls = [ ] urlpatterns = [ - url(r'^market/', include(module_urls)) + url(r'^evernus-market/', include(module_urls)) ]