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

(vila) Fix 199440 by taking allowing no password in a section

Show diffs side-by-side

added added

removed removed

Lines of Context:
1034
1034
                # Can't find a user
1035
1035
                continue
1036
1036
            credentials = dict(name=auth_def_name,
1037
 
                               user=a_user, password=auth_def['password'],
 
1037
                               user=a_user,
 
1038
                               password=auth_def.get('password', None),
1038
1039
                               verify_certificates=a_verify_certificates)
1039
1040
            self.decode_password(credentials,
1040
1041
                                 auth_def.get('password_encoding', None))