cue: fix warning (default argument mutable)

This commit is contained in:
Ralph Lange
2020-09-06 18:38:15 +02:00
parent fd71e94dd4
commit 884d017650

4
cue.py
View File

@@ -380,7 +380,9 @@ def call_git(args, **kws):
return exitcode
def call_make(args=[], **kws):
def call_make(args=None, **kws):
if args is None:
args = []
place = kws.get('cwd', os.getcwd())
parallel = kws.pop('parallel', ci['parallel_make'])
silent = kws.pop('silent', False)