summaryrefslogtreecommitdiffstats
path: root/dovetail/cli
diff options
context:
space:
mode:
authorPanagiotis Karalis <panos.pkaralis@gmail.com>2019-08-07 10:46:52 +0300
committerDan Xu <xudan16@huawei.com>2019-09-16 06:45:00 +0000
commit005d868d68dbb0e70b3f92a685ea269c4f646fd7 (patch)
treedcb1f0f64606b58f0c33e9dc96131fdbe4ed6398 /dovetail/cli
parentf0c44b1ae02ffbdb87da81dac7b6754c641d8c04 (diff)
Move the proj to python3
The aim of this patch is to upgrade python version of this project from python2 to python3. Signed-off-by: Panagiotis Karalis <panos.pkaralis@gmail.com> Change-Id: I3d3ef01176fda1b23a0542a24625be2f3368c40e
Diffstat (limited to 'dovetail/cli')
-rw-r--r--dovetail/cli/commands/cli_testcase.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dovetail/cli/commands/cli_testcase.py b/dovetail/cli/commands/cli_testcase.py
index 2725c895..6711381c 100644
--- a/dovetail/cli/commands/cli_testcase.py
+++ b/dovetail/cli/commands/cli_testcase.py
@@ -82,7 +82,7 @@ class CliTestcase(object):
os.path.join(os.path.dirname(__file__),
os.pardir, os.pardir))
- cmd = ("python %s/run.py"
+ cmd = ("python3 %s/run.py"
" %s" % (repo_dir, options))
dt_utils.exec_cmd(cmd, exit_on_error=True,
exec_msg_on=False, info=True)