Convert the charm to Python3

* Move charmhelpers to the root of the charm
* sync charmhelpers to latest version

Change-Id: Id0b838f0206635cf912d205f2fb6fda7b31d0dfe
This commit is contained in:
Alex Kavanagh
2019-02-01 12:17:30 +00:00
parent b53207d2fd
commit ddd26acc6d
145 changed files with 746 additions and 185 deletions

View File

@@ -36,7 +36,7 @@ def get_default_config():
'''
default_config = {}
config = load_config()
for k, v in config.iteritems():
for k, v in config.items():
if 'default' in v:
default_config[k] = v['default']
else: