Skip to content

Commit

Permalink
diff mvrs
Browse files Browse the repository at this point in the history
  • Loading branch information
mossplix committed Jun 25, 2012
1 parent c75da88 commit 0c167c9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion mobilevrs_project/mobilevrs/urls.py
Expand Up @@ -8,7 +8,7 @@

urlpatterns = patterns('',
# Examples:
url(r'^$', ussd_menu),
url(r'^ussd/$', ussd_menu),

# Uncomment the admin/doc line below to enable admin documentation:
# url(r'^admin/doc/', include('django.contrib.admindocs.urls')),
Expand Down
6 changes: 3 additions & 3 deletions mobilevrs_project/urls.py
@@ -1,19 +1,19 @@
from django.conf.urls.defaults import patterns, include, url
from ussd.urls import urlpatterns as ussd_urls
from mobilevrs.views import *
from mobilevrs.urls import urlpatterns as vrs_urls

# Uncomment the next two lines to enable the admin:
#from django.contrib import admin
#admin.autodiscover()

urlpatterns = patterns('',
# Examples:
url(r'ussd/$', include('mobilevrs.urls')),
#url(r'ussd/$', include('mobilevrs.urls')),

# Uncomment the admin/doc line below to enable admin documentation:
# url(r'^admin/doc/', include('django.contrib.admindocs.urls')),

# Uncomment the next line to enable the admin:
#url(r'^admin/', include(admin.site.urls)),
#(r'^$', include(ussd_urls)),
)
)+vrs_urls

0 comments on commit 0c167c9

Please sign in to comment.