Do not export none vars

This commit is contained in:
jpic 2020-01-26 12:40:58 +01:00
parent 48e4094636
commit 9475d8b9af

View File

@ -2,7 +2,7 @@ from .script import Script
class BuildScript(Script):
export = ('base', 'repo', 'tag', 'image')
export = ('base', 'repo')
def __init__(self, container):
super().__init__()