/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-16 19:38:57 UTC
  • mfrom: (7143.16.21 even-more-cleanups)
  • Revision ID: breezy.the.bot@gmail.com-20181116193857-bs5oma2655sp55qu
Fix another dozen flake8 errors.

Merged from https://code.launchpad.net/~jelmer/brz/even-more-cleanups/+merge/358931

Show diffs side-by-side

added added

removed removed

Lines of Context:
519
519
        ref = self._get_selected_ref(name, ref)
520
520
        try:
521
521
            if not nascent_ok and ref not in self.get_refs_container():
522
 
                raise NotBranchError(self.root_transport.base,
523
 
                        controldir=self)
 
522
                raise NotBranchError(
 
523
                    self.root_transport.base, controldir=self)
524
524
        except NotGitRepository:
525
525
            raise NotBranchError(self.root_transport.base,
526
526
                                 controldir=self)
841
841
    def fetch_pack(self, determine_wants, graph_walker, pack_data,
842
842
                   progress=None):
843
843
        return self.controldir.fetch_pack(
844
 
                determine_wants, graph_walker, pack_data, progress)
 
844
            determine_wants, graph_walker, pack_data, progress)
845
845
 
846
846
    def send_pack(self, get_changed_refs, generate_pack_data):
847
847
        return self.controldir.send_pack(get_changed_refs, generate_pack_data)