Changeset - 71401840ed86
[Not reviewed]
default
0 1 0
Marcin Kuzminski - 16 years ago 2010-04-13 22:32:53
marcin@python-blog.com
refactoring update
1 file changed with 2 insertions and 4 deletions:
0 comments (0 inline, 0 general)
pylons_app/controllers/hg.py
Show inline comments
 
#!/usr/bin/python
 
# -*- coding: utf-8 -*-
 
import logging
 
import os
 
from pylons_app.lib.base import BaseController
 
from pylons import tmpl_context as c, app_globals as g, session, request, config
 
from pylons_app.lib import helpers as h
 
from pylons_app.lib.base import BaseController, render
 
from mako.template import Template
 
from pylons.controllers.util import abort
 
from pylons_app.lib.base import BaseController, render
 

	
 
from operator import itemgetter
 

	
 
from pylons_app.model.hg_model import HgModel
 
log = logging.getLogger(__name__)
 

	
0 comments (0 inline, 0 general)