/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/smart/medium.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-03-11 10:22:00 UTC
  • mfrom: (4100.1.5 trivial)
  • Revision ID: pqm@pqm.ubuntu.com-20090311102200-heffmfrrstw2fovy
(mbp) SSHSmartClientStreamMedium repr and better LockContention
        message

Show diffs side-by-side

added added

removed removed

Lines of Context:
727
727
        :param vendor: An optional override for the ssh vendor to use. See
728
728
            bzrlib.transport.ssh for details on ssh vendors.
729
729
        """
730
 
        SmartClientStreamMedium.__init__(self, base)
731
730
        self._connected = False
732
731
        self._host = host
733
732
        self._password = password
734
733
        self._port = port
735
734
        self._username = username
 
735
        # SmartClientStreamMedium stores the repr of this object in its
 
736
        # _DebugCounter so we have to store all the values used in our repr
 
737
        # method before calling the super init.
 
738
        SmartClientStreamMedium.__init__(self, base)
736
739
        self._read_from = None
737
740
        self._ssh_connection = None
738
741
        self._vendor = vendor