diff --git a/cue.py b/cue.py index 2185489..f8a4763 100644 --- a/cue.py +++ b/cue.py @@ -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)