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

  • Committer: Jelmer Vernooij
  • Date: 2020-06-28 19:47:23 UTC
  • mto: (7490.40.35 work)
  • mto: This revision was merged to the branch mainline in revision 7519.
  • Revision ID: jelmer@jelmer.uk-20200628194723-ztfbcmru278fd3x4
Simplify log browsing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2839
2839
            # find the file ids to log and check for directory filtering
2840
2840
            b, file_info_list, rev1, rev2 = _get_info_for_log_files(
2841
2841
                revision, file_list, self._exit_stack)
2842
 
            for relpath, found, kind in file_info_list:
2843
 
                if not found:
 
2842
            for relpath, kind in file_info_list:
 
2843
                if not kind:
2844
2844
                    raise errors.CommandError(gettext(
2845
2845
                        "Path unknown at end or start of revision range: %s") %
2846
2846
                        relpath)