Upgrade from Django 0.96 to Django 1.0.2.
Risk: high (framework change)
Visibility: medium
Signed-off-by: James Ren <jamesren@google.com>
git-svn-id: http://test.kernel.org/svn/autotest/trunk@3457 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/frontend/afe/urls.py b/frontend/afe/urls.py
index 09bff6c..78cd5fb 100644
--- a/frontend/afe/urls.py
+++ b/frontend/afe/urls.py
@@ -1,15 +1,16 @@
from django.conf.urls.defaults import *
import os
-from frontend import settings
-from frontend.afe.feeds import feed
+from autotest_lib.frontend import settings
+from autotest_lib.frontend.afe.feeds import feed
feeds = {
'jobs' : feed.JobFeed
}
-pattern_list = [(r'^(?:|noauth/)rpc/', 'frontend.afe.views.handle_rpc'),
- (r'^rpc_doc', 'frontend.afe.views.rpc_documentation'),
- ]
+pattern_list = [
+ (r'^(?:|noauth/)rpc/', 'frontend.afe.views.handle_rpc'),
+ (r'^rpc_doc', 'frontend.afe.views.rpc_documentation'),
+ ]
debug_pattern_list = [
(r'^model_doc/', 'frontend.afe.views.model_documentation'),