diff --git a/pylons_app/controllers/hg.py b/pylons_app/controllers/hg.py --- a/pylons_app/controllers/hg.py +++ b/pylons_app/controllers/hg.py @@ -2,7 +2,8 @@ # -*- coding: utf-8 -*- import logging from pylons_app.lib.base import BaseController, render -from pylons import c, g, session, h, request +from pylons import c, g, session, request +from pylons_app.lib import helpers as h from mako.template import Template from pprint import pprint import os @@ -31,6 +32,10 @@ class HgController(BaseController): return template.render(g = g, c = c, session = session, h = h) + + def manage_hgrc(self): + pass + def add_repo(self, new_repo): c.staticurl = g.statics