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

  • Committer: Martin
  • Date: 2011-05-17 17:03:58 UTC
  • mfrom: (5879 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5888.
  • Revision ID: gzlist@googlemail.com-20110517170358-fonomozaw65x4od2
Merge bzr.dev to resolve release notes conflict

Show diffs side-by-side

added added

removed removed

Lines of Context:
2995
2995
            _override_hook_target=self, **kwargs)
2996
2996
 
2997
2997
    @needs_read_lock
2998
 
    def push(self, target, overwrite=False, stop_revision=None):
 
2998
    def push(self, target, overwrite=False, stop_revision=None, lossy=False):
2999
2999
        self._ensure_real()
3000
3000
        return self._real_branch.push(
3001
 
            target, overwrite=overwrite, stop_revision=stop_revision,
 
3001
            target, overwrite=overwrite, stop_revision=stop_revision, lossy=lossy,
3002
3002
            _override_hook_source_branch=self)
3003
3003
 
3004
3004
    def is_locked(self):