Skip to content
Snippets Groups Projects
Commit c36af7a4 authored by Constantinos Venetsanopoulos's avatar Constantinos Venetsanopoulos
Browse files

Merge pull request #28 from skalkoto/hotfix-0.7.3

Hotfix 0.7.3
parents d235e498 25e6e28c
No related branches found
No related tags found
No related merge requests found
2014-10-21, v0.7.3
* Instruct kamaki to ignore the ssl certificates (kamaki >= 0.13rc5).
2014-10-14, v0.7.2
* Fix an exception triggered when collecting Ubuntu metadata
......
......@@ -30,6 +30,12 @@ from kamaki.clients.image import ImageClient
from kamaki.clients.pithos import PithosClient
from kamaki.clients.astakos import CachedAstakosClient as AstakosClient
try:
from kamaki.clients.utils import https
https.patch_ignore_ssl()
except ImportError:
pass
try:
config = Config()
except Exception as e:
......
__version__ = "0.7.2"
__version__ = "0.7.3"
__version_vcs_info__ = {
'branch': 'hotfix-0.7.2',
'revid': '7b0713f',
'revno': 582}
'branch': 'hotfix-0.7.3',
'revid': '5de748e',
'revno': 586}
__version_user_email__ = "skalkoto@grnet.gr"
__version_user_name__ = "Nikos Skalkotos"
0.7.2
0.7.3
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment