Show
Ignore:
Timestamp:
08/30/07 22:56:42 (15 months ago)
Author:
roidelapluie
Message:

0.11.2: fix a TB when password is None instead of a string. fixes #3075

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/gajim_0.11.1/src/config.py

    r8619 r8639  
    12171217                        gajim.config.get_per('accounts', self.account, 'savepass')) 
    12181218                if gajim.config.get_per('accounts', self.account, 'savepass'): 
    1219                         passstr = passwords.get_password(self.account) 
     1219                        passstr = passwords.get_password(self.account) or '' 
    12201220                        password_entry = self.xml.get_widget('password_entry') 
    12211221                        password_entry.set_sensitive(True)