~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/remote.py

  • Committer: Martin Pool
  • Date: 2008-07-15 04:43:19 UTC
  • mto: This revision was merged to the branch mainline in revision 3542.
  • Revision ID: mbp@sourcefrog.net-20080715044319-wy26hdr8kvrb0ne9
Rename branch.get_stacked_on to get_stacked_on_url

Show diffs side-by-side

added added

removed removed

Lines of Context:
1319
1319
        self._ensure_real()
1320
1320
        return self._real_branch.get_physical_lock_status()
1321
1321
 
1322
 
    def get_stacked_on(self):
 
1322
    def get_stacked_on_url(self):
1323
1323
        """Get the URL this branch is stacked against.
1324
1324
 
1325
1325
        :raises NotStacked: If the branch is not stacked.
1329
1329
            stacking.
1330
1330
        """
1331
1331
        self._ensure_real()
1332
 
        return self._real_branch.get_stacked_on()
 
1332
        return self._real_branch.get_stacked_on_url()
1333
1333
 
1334
1334
    def lock_read(self):
1335
1335
        if not self._lock_mode: