Fix an error with NoneType

This commit is contained in:
PapaTutuWawa 2020-09-26 13:33:50 +02:00
parent b89126bca5
commit 1818105d98

View File

@ -187,7 +187,7 @@ def main():
help='The assets directory to copy') help='The assets directory to copy')
parser.add_option('-v', '--variable', action='append', dest='variables', parser.add_option('-v', '--variable', action='append', dest='variables',
help='Append a variable to the params') help='Append a variable to the params')
parser.add_option('-i', '--ignore', action='append', dest='asset_ignores', parser.add_option('-i', '--ignore', action='append', dest='asset_ignores', default=[],
help='Ignore a folder when copying the assets') help='Ignore a folder when copying the assets')
parser.add_option('--include', action='append', dest='includes', default=[], parser.add_option('--include', action='append', dest='includes', default=[],
help='Include files and folders into the build') help='Include files and folders into the build')