1
0
mirror of https://github.com/openSUSE/osc.git synced 2025-01-13 09:16:14 +01:00

set scheme=https in the default conf; add missing import sys in othermethods.py

This commit is contained in:
Dr. Peter Poeml 2006-10-13 06:37:16 +00:00
parent 3b96e4dfdf
commit 4f61fc4bb0
2 changed files with 2 additions and 1 deletions

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': 'http',
'scheme': 'https',
'user': 'poeml',
'pass': 'secret',
'auth_dict': {'api.opensuse.org': {'user': 'poeml', 'pass': 'secret'},

View File

@ -14,6 +14,7 @@ PUT methods.
import httplib
import base64
import sys
import os
import urlparse
from osc.core import __version__