/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/version_info_formats/format_custom.py

  • Committer: Jelmer Vernooij
  • Date: 2019-06-02 02:35:46 UTC
  • mfrom: (7309 work)
  • mto: This revision was merged to the branch mainline in revision 7319.
  • Revision ID: jelmer@jelmer.uk-20190602023546-lqco868tnv26d8ow
merge trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
from breezy import errors
25
25
from breezy.revision import (
26
 
   NULL_REVISION,
27
 
   )
 
26
    NULL_REVISION,
 
27
    )
28
28
from breezy.lazy_regex import lazy_compile
29
29
from breezy.sixish import PY3
30
30
from breezy.version_info_formats import (
31
 
   create_date_str,
32
 
   VersionInfoBuilder,
33
 
   )
 
31
    create_date_str,
 
32
    VersionInfoBuilder,
 
33
    )
34
34
 
35
35
 
36
36
class MissingTemplateVariable(errors.BzrError):