summaryrefslogtreecommitdiffstats
path: root/ipsilon/root.py
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2014-01-24 15:57:28 -0500
committerSimo Sorce <simo@redhat.com>2014-01-24 17:31:56 -0500
commit47ff1fb4cd7a6c416c93246decacd19628b232c3 (patch)
tree5ccd86107dc53e0f6a279c8458022dd252bb032c /ipsilon/root.py
parenteecd7248cf68418e4248d37303d58334ea7e8eb8 (diff)
downloadipsilon-47ff1fb4cd7a6c416c93246decacd19628b232c3.tar.gz
ipsilon-47ff1fb4cd7a6c416c93246decacd19628b232c3.tar.xz
ipsilon-47ff1fb4cd7a6c416c93246decacd19628b232c3.zip
Fix Imports
Based on patches by Petr Voborni Signed-off-by: Simo Sorce <simo@redhat.com>
Diffstat (limited to 'ipsilon/root.py')
-rwxr-xr-xipsilon/root.py5
1 files changed, 2 insertions, 3 deletions
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 <http://www.gnu.org/licenses/>.
-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')