From 8ebf4e27efe1179a83092392b3c26398ed9cc4e9 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Tue, 7 Feb 2012 13:31:09 +0530 Subject: [PATCH] moved index to webnotes/cms --- index.cgi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.cgi b/index.cgi index bc1de92863..3ec31e7985 100755 --- a/index.cgi +++ b/index.cgi @@ -32,11 +32,11 @@ def respond(): if 'cmd' in webnotes.form_dict: webnotes.handler.handle() else: - import webnotes.index + import webnotes.cms.index print "Content-Type: text/html" webnotes.handler.print_cookies() print - print webnotes.index.get() + print webnotes.cms.index.get() if __name__=="__main__": init()