From a94364d95b85d8ef5fcbda8a2346e905151ba4f0 Mon Sep 17 00:00:00 2001 From: "Dr. Peter Poeml" Date: Fri, 13 Oct 2006 09:19:28 +0000 Subject: [PATCH] correct last fix: set scheme in DEFAULTS not in the comment. --- osc/conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/osc/conf.py b/osc/conf.py index 2459a853..58f05d1c 100644 --- a/osc/conf.py +++ b/osc/conf.py @@ -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',