Catch Python 2.7 deprecation warning

This commit is contained in:
Valentin Niess
2020-04-04 00:48:39 +02:00
parent 999fcf8083
commit 8c5bdaf5b7
5 changed files with 36 additions and 19 deletions

View File

@@ -23,7 +23,7 @@ def docker_run(image, extra_cmds):
raise ValueError('Unsupported Docker image: ' + image)
log('PULL', image)
system('docker', 'pull', image)
system(('docker', 'pull', image))
script = [
'set -e',