/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/controllers/view_ui.py

  • 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:
19
19
 
20
20
import os
21
21
 
22
 
from breezy.errors import (
23
 
    BinaryFile,
24
 
    NoSuchId,
25
 
    NoSuchRevision,
26
 
    )
 
22
from breezy.errors import BinaryFile, NoSuchId, NoSuchRevision
 
23
 
27
24
try:
28
25
    from breezy.transport import NoSuchFile
29
26
except ImportError:
30
27
    from breezy.errors import NoSuchFile
31
 
from breezy import (
32
 
    osutils,
33
 
    urlutils,
34
 
    )
 
28
 
35
29
import breezy.textfile
36
 
 
37
 
from paste.httpexceptions import (
38
 
    HTTPBadRequest,
39
 
    HTTPMovedPermanently,
40
 
    HTTPNotFound,
41
 
    )
 
30
from breezy import osutils, urlutils
 
31
from paste.httpexceptions import (HTTPBadRequest, HTTPMovedPermanently,
 
32
                                  HTTPNotFound)
42
33
 
43
34
from ..controllers import TemplatedBranchView
 
35
 
44
36
try:
45
37
    from ..highlight import highlight
46
38
except ImportError: