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

  • Committer: Andrew Bennetts
  • Date: 2007-10-12 05:26:46 UTC
  • mfrom: (2904 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2906.
  • Revision ID: andrew.bennetts@canonical.com-20071012052646-wl95idld3ijjy714
Merge from bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
import urlparse
28
28
 
29
29
from bzrlib import (
 
30
    config,
30
31
    debug,
31
32
    errors,
32
33
    trace,
466
467
        # ssh will prompt the user for a password if needed and if none is
467
468
        # provided but it will not give it back, so no credentials can be
468
469
        # stored.
 
470
        location_config = config.LocationConfig(self.base)
 
471
        bzr_remote_path = location_config.get_bzr_remote_path()
469
472
        return medium.SmartSSHClientMedium(self._host, self._port,
470
 
                                           self._user, self._password), None
 
473
            self._user, self._password, bzr_remote_path=bzr_remote_path), None
471
474
 
472
475
 
473
476
class RemoteHTTPTransport(RemoteTransport):