From 47ff1fb4cd7a6c416c93246decacd19628b232c3 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Fri, 24 Jan 2014 15:57:28 -0500 Subject: Fix Imports Based on patches by Petr Voborni Signed-off-by: Simo Sorce --- ipsilon/root.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'ipsilon/root.py') diff --git a/ipsilon/root.py b/ipsilon/root.py index a352641..cd64ef3 100755 --- a/ipsilon/root.py +++ b/ipsilon/root.py @@ -17,10 +17,9 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -from util import page -import cherrypy +from ipsilon.util.page import Page -class Root(page.Page): +class Root(Page): def root(self): return self._template('index.html', title='Root') -- cgit