~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/remote.py

  • Committer: John Arbash Meinel
  • Date: 2008-06-07 22:15:25 UTC
  • mto: This revision was merged to the branch mainline in revision 3487.
  • Revision ID: john@arbash-meinel.com-20080607221525-jfarlas0hrdt3r9m
Fix bug #238149, RemoteBranch.pull needs to return the _real_branch's pull result.

The test won't actually test the fix until bug #238227 is closed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1516
1516
        # fixed.  It should get a _override_hook_target branch,
1517
1517
        # as push does.  -- mbp 20070405
1518
1518
        self._ensure_real()
1519
 
        self._real_branch.pull(
 
1519
        return self._real_branch.pull(
1520
1520
            source, overwrite=overwrite, stop_revision=stop_revision,
1521
1521
            **kwargs)
1522
1522