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

  • Committer: Breezy landing bot
  • Author(s): Martin
  • Date: 2017-06-11 01:56:34 UTC
  • mfrom: (6684.1.5 py3_bootstrap2)
  • Revision ID: breezy.the.bot@gmail.com-20170611015634-9eeh86thh073hcko
More progress towards Python 3 support

Merged from https://code.launchpad.net/~gz/brz/py3_bootstrap2/+merge/325452

Show diffs side-by-side

added added

removed removed

Lines of Context:
280
280
                    raise errors.RootNotRich()
281
281
        if message_callback is None:
282
282
            if message is not None:
283
 
                if isinstance(message, str):
 
283
                if isinstance(message, bytes):
284
284
                    message = message.decode(get_user_encoding())
285
285
                message_callback = lambda x: message
286
286
            else:
657
657
        """
658
658
        exclude = self.exclude
659
659
        specific_files = self.specific_files
660
 
        mutter("Selecting files for commit with filter %s", specific_files)
 
660
        mutter("Selecting files for commit with filter %r", specific_files)
661
661
 
662
662
        self._check_strict()
663
663
        if self.use_record_iter_changes: