/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/revision_ui.py

  • Committer: Ubuntu One Auto Copilot
  • Author(s): Jelmer Vernooij
  • Date: 2022-08-30 10:28:23 UTC
  • mfrom: (533.1.1 trunk)
  • Revision ID: otto-copilot@canonical.com-20220830102823-u3w6efosxw5s086s
Cope with moved errors NoSuchFile and FileExists in newer versions of Breezy.

Merged from https://code.launchpad.net/~jelmer/loggerhead/moved-errors/+merge/429073

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
import json
21
21
 
 
22
from paste.httpexceptions import HTTPServerError
 
23
 
22
24
from breezy import urlutils
23
 
from paste.httpexceptions import HTTPServerError
24
25
 
25
26
from .. import util
26
27
from ..controllers import TemplatedBranchView
27
28
from ..controllers.filediff_ui import diff_chunks_for_file
28
29
 
 
30
 
29
31
DEFAULT_LINE_COUNT_LIMIT = 3000
30
32
 
31
33