~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/ftp.py

  • Committer: Robert Collins
  • Date: 2007-10-22 01:23:51 UTC
  • mfrom: (2921.3.1 graph)
  • mto: This revision was merged to the branch mainline in revision 2933.
  • Revision ID: robertc@robertcollins.net-20071022012351-16lm27an2lbzk038
Merge graph history-access bugfix.

Show diffs side-by-side

added added

removed removed

Lines of Context:
143
143
 
144
144
    def _reconnect(self):
145
145
        """Create a new connection with the previously used credentials"""
146
 
        credentials = self.get_credentials()
 
146
        credentials = self._get_credentials()
147
147
        connection, credentials = self._create_connection(credentials)
148
148
        self._set_connection(connection, credentials)
149
149