/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/ftp.py

  • Committer: Vincent Ladeuil
  • Date: 2007-10-23 07:15:13 UTC
  • mfrom: (2926 +trunk)
  • mto: (2961.1.1 trunk)
  • mto: This revision was merged to the branch mainline in revision 2962.
  • Revision ID: v.ladeuil+lp@free.fr-20071023071513-elryt6g2at34d2ur
merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
152
152
 
153
153
    def _reconnect(self):
154
154
        """Create a new connection with the previously used credentials"""
155
 
        credentials = self.get_credentials()
 
155
        credentials = self._get_credentials()
156
156
        connection, credentials = self._create_connection(credentials)
157
157
        self._set_connection(connection, credentials)
158
158