~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/controllers/__init__.py

  • Committer: Michael Hudson
  • Date: 2008-02-27 03:35:24 UTC
  • mto: This revision was merged to the branch mainline in revision 146.
  • Revision ID: michael.hudson@canonical.com-20080227033524-dxj2zk63l9c29btu
remove lots of unused imports

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
import logging
21
21
import os
22
22
import re
23
 
import sys
24
 
import time
25
23
 
26
24
import turbogears
27
25
from turbogears import controllers
28
 
from cherrypy import NotFound
29
26
from configobj import ConfigObj
30
27
 
31
28
from loggerhead import util
32
29
from loggerhead.branchview import BranchView
33
 
from loggerhead.history import History, is_branch
 
30
from loggerhead.history import is_branch
34
31
 
35
32
log = logging.getLogger("loggerhead.controllers")
36
33