Merge pull request #435 from home-assistant/fix_docker_char

Bugfix, remove unsupported characters
This commit is contained in:
Pascal Vizeli 2018-04-09 20:22:03 +02:00 committed by GitHub
commit cebc377fa7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 3 deletions

View File

@ -55,8 +55,8 @@ class AddonBuild(JsonConfig, CoreSysAttributes):
'io.hass.version': version,
'io.hass.arch': self._arch,
'io.hass.type': META_ADDON,
'io.hass.name': self.addon.name,
'io.hass.description': self.addon.description,
'io.hass.name': self._fix_label('name'),
'io.hass.description': self._fix_label('description'),
},
'buildargs': {
'BUILD_FROM': self.base_image,
@ -70,3 +70,8 @@ class AddonBuild(JsonConfig, CoreSysAttributes):
args['labels']['io.hass.url'] = self.addon.url
return args
def _fix_label(self, label_name):
"""Remove characters they are not supported."""
label = getattr(self.addon, label_name, "")
return label.replace("'", "")

View File

@ -42,7 +42,7 @@ setup(
install_requires=[
'async_timeout==2.0.0',
'aiohttp==3.0.9',
'docker==3.1.1',
'docker==3.2.0',
'colorlog==3.1.2',
'voluptuous==0.11.1',
'gitpython==2.1.8',