/loggerhead/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/loggerhead/trunk

« back to all changes in this revision

Viewing changes to loggerhead.wsgi

  • Committer: Ubuntu One Auto Copilot
  • Author(s): Jelmer Vernooij
  • Date: 2023-02-01 10:38:17 UTC
  • mfrom: (543.2.1 lp:loggerhead)
  • Revision ID: otto-copilot@canonical.com-20230201103817-h68q8zmdvm7u1vv4
Sort Python import definitions

Merged from https://code.launchpad.net/~jelmer/loggerhead/isort/+merge/436635

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
# Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335  USA
15
15
 
16
16
 
17
 
import sys
18
17
import os
19
18
import pwd
 
19
import sys
 
20
 
20
21
sys.path.insert(0, os.path.dirname(__file__))
21
22
 
 
23
from breezy import config as bzrconfig
 
24
from breezy.plugin import load_plugins
 
25
from paste.deploy.config import PrefixMiddleware
22
26
from paste.httpexceptions import HTTPExceptionHandler
 
27
 
 
28
from loggerhead.apps.error import ErrorHandlerApp
23
29
from loggerhead.apps.transport import BranchesFromTransportRoot
24
 
from loggerhead.apps.error import ErrorHandlerApp
25
30
from loggerhead.config import LoggerheadConfig
26
 
from breezy import config as bzrconfig
27
 
from paste.deploy.config import PrefixMiddleware
28
 
from breezy.plugin import load_plugins
 
31
 
29
32
 
30
33
class NotConfiguredError(Exception):
31
34
    pass