Changeset - 28f28d423268
[Not reviewed]
default
0 1 0
Marcin Kuzminski - 16 years ago 2010-05-09 13:20:52
marcin@python-works.com
removed ununsed imports
1 file changed with 2 insertions and 10 deletions:
0 comments (0 inline, 0 general)
pylons_app/controllers/hg.py
Show inline comments
 
#!/usr/bin/python
 
# -*- coding: utf-8 -*-
 
from mako.template import Template
 
from mercurial.hg import repository
 
from mercurial.hgweb import hgweb
 
from mercurial.hgweb.request import wsgiapplication
 
from mercurial.localrepo import localrepository
 
import logging
 
from operator import itemgetter
 
from pylons import tmpl_context as c, app_globals as g, session, request, config
 
from pylons.controllers.util import abort
 
from pylons_app.lib import helpers as h
 
from pylons import tmpl_context as c, request, config
 
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
 
import logging
 
import os
 
from beaker.cache import cache_region
 
log = logging.getLogger(__name__)
 

	
0 comments (0 inline, 0 general)