diff --git a/pylons_app/controllers/shortlog.py b/pylons_app/controllers/shortlog.py --- a/pylons_app/controllers/shortlog.py +++ b/pylons_app/controllers/shortlog.py @@ -1,13 +1,9 @@ -import logging - -from pylons import tmpl_context as c, app_globals as g, session, request, config, url -from pylons.controllers.util import abort, redirect - +from pylons import tmpl_context as c, request +from pylons_app.lib.auth import LoginRequired from pylons_app.lib.base import BaseController, render -from pylons_app.lib.utils import get_repo_slug from pylons_app.model.hg_model import HgModel from webhelpers.paginate import Page -from pylons_app.lib.auth import LoginRequired +import logging log = logging.getLogger(__name__)