From 732ca48887ba64283b3e6bb2e781e416e17edd03 Mon Sep 17 00:00:00 2001 From: yuvipanda Date: Wed, 11 Jul 2018 02:09:38 -0700 Subject: [PATCH] Fix syntax error in integration-test.py --- .circleci/integration-test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/integration-test.py b/.circleci/integration-test.py index 6fab030..97ccc88 100644 --- a/.circleci/integration-test.py +++ b/.circleci/integration-test.py @@ -71,7 +71,7 @@ def copy_to_container(container_name, src_path, dest_path): """ subprocess.check_call([ 'docker', 'cp', - src_path, f'{container_name}:{dest_path}'' + src_path, f'{container_name}:{dest_path}' ])