1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-09-20 17:26:15 +02:00

correct last fix: set scheme in DEFAULTS not in the comment.

This commit is contained in:
Dr. Peter Poeml 2006-10-13 09:19:28 +00:00
parent 4f61fc4bb0
commit a94364d95b

View File

@ -18,7 +18,7 @@ After reading the config, urllib2 is initialized.
The configuration dictionary could look like this:
{'apisrv': 'api.opensuse.org',
'scheme': 'https',
'scheme': 'http',
'user': 'poeml',
'pass': 'secret',
'auth_dict': {'api.opensuse.org': {'user': 'poeml', 'pass': 'secret'},
@ -41,7 +41,7 @@ import ConfigParser
config = { }
DEFAULTS = { 'apisrv': 'api.opensuse.org',
'scheme': 'http',
'scheme': 'https',
'user': 'your_username',
'pass': 'your_password',
'packagecachedir': '/var/tmp/osbuild-packagecache',