/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/git/errors.py

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2019-01-24 03:10:24 UTC
  • mfrom: (7240.10.2 hg-field)
  • Revision ID: breezy.the.bot@gmail.com-20190124031024-wj85jdwr60lhwluk
Properly handle exceptions about hg extra fields.

Merged from https://code.launchpad.net/~jelmer/brz/hg-field/+merge/361706

Show diffs side-by-side

added added

removed removed

Lines of Context:
78
78
    def __init__(self, object, fields):
79
79
        brz_errors.BzrError.__init__(self)
80
80
        self.object = object
81
 
        self.fields = ",".join(fields)
 
81
        self.fields = b",".join(fields)