From dd5b3a7ba3e8aa58d0d60d148686b0e82baa9605 Mon Sep 17 00:00:00 2001 From: Chris Van Date: Tue, 13 Mar 2012 15:52:35 -0700 Subject: [PATCH] fix webapps urls --- lib/urls_base.py | 2 +- mkt/urls.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/urls_base.py b/lib/urls_base.py index 1f984da2e9..9c90fa8605 100644 --- a/lib/urls_base.py +++ b/lib/urls_base.py @@ -35,7 +35,7 @@ urlpatterns = patterns('', ('', include('addons.urls')), # Web apps. - ('^apps/', include('webapps.urls')), + #('^apps/', include('mkt.webapps.urls')), # Browse pages. ('', include('browse.urls')), diff --git a/mkt/urls.py b/mkt/urls.py index 3b3a5e392f..57ffa4ed85 100644 --- a/mkt/urls.py +++ b/mkt/urls.py @@ -38,7 +38,7 @@ urlpatterns = patterns('', ('^app/%s/' % APP_SLUG, include('mkt.detail.urls')), # Web apps. - ('^apps/', include('webapps.urls')), + #('^apps/', include('mkt.webapps.urls')), # Users. ('', include('users.urls')),