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

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2018-11-22 03:51:03 UTC
  • mfrom: (7192.5.2 remove-more-file-ids)
  • Revision ID: breezy.the.bot@gmail.com-20181122035103-1c5jnbdx2t5yujqb
Stop actually accepting optional file_id in many Tree methods.

Merged from https://code.launchpad.net/~jelmer/brz/remove-more-file-ids/+merge/358950

Show diffs side-by-side

added added

removed removed

Lines of Context:
816
816
        f.seek(0)
817
817
        return osutils.file_iterator(f)
818
818
 
819
 
    def is_versioned(self, path, file_id=None):
 
819
    def is_versioned(self, path):
820
820
        raise GitSmartRemoteNotSupported(self.is_versioned, self)
821
821
 
822
822
    def has_filename(self, path):
823
823
        raise GitSmartRemoteNotSupported(self.has_filename, self)
824
824
 
825
 
    def get_file_text(self, path, file_id=None):
 
825
    def get_file_text(self, path):
826
826
        raise GitSmartRemoteNotSupported(self.get_file_text, self)
827
827
 
828
828