From: chunhua1.liu Date: Wed, 17 Jun 2020 03:50:04 +0000 (+0800) Subject: fix pylint error for python-support X-Git-Tag: accepted/tizen/devbase/tools/20200618.010556^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=372f8386b2776db0fd1db7975a13c672fc999de3;p=tools%2Fpython-support.git fix pylint error for python-support Change-Id: Ied7b64729621c9cdc6c3a14cf348d36c14a794a9 --- diff --git a/tests/testparseversions.py b/tests/testparseversions.py index 4da7084..1b633ba 100755 --- a/tests/testparseversions.py +++ b/tests/testparseversions.py @@ -9,7 +9,7 @@ class TestParseVersions(unittest.TestCase): subp = subprocess.Popen(args, stdout=subprocess.PIPE) output = subp.communicate()[0] if subp.returncode != 0: - raise RuntimeError, subp.returncode + raise RuntimeError(subp.returncode) return output def pv_output(self, control):