~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/push.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2011-05-18 01:02:52 UTC
  • mfrom: (5861.1.11 no-remember-for-all)
  • Revision ID: pqm@pqm.ubuntu.com-20110518010252-kt8qh7jykm18djt1
(vila) Generalises the --no-remember support for send/pull/push (Vincent
 Ladeuil)

Show diffs side-by-side

added added

removed removed

Lines of Context:
129
129
        push_result.target_branch = br_to
130
130
        push_result.old_revid = _mod_revision.NULL_REVISION
131
131
        push_result.old_revno = 0
132
 
        if br_from.get_push_location() is None or remember:
 
132
        # Remembers if asked explicitly or no previous location is set
 
133
        if (remember
 
134
            or (remember is None and br_from.get_push_location() is None)):
133
135
            br_from.set_push_location(br_to.base)
134
136
    else:
135
137
        if stacked_on is not None: