~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to loggerhead/controllers/__init__.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2008-02-27 11:38:19 UTC
  • mfrom: (144.1.10 fix-pyflakes-notes)
  • Revision ID: launchpad@pqm.canonical.com-20080227113819-soawqhenqe9znu1p
[r=thumper][!log] remove unused files and imports and normalize the whitespace

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