[dts] [PATCH V1] framework/main: fix warning of syntax

LihongX Ma lihongx.ma at intel.com
Thu Jul 30 02:36:58 CEST 2020


From: "LihongX, Ma" <lihongx.ma at intel.com>

when use python3.8, it will warning of cmd 'ret is not 0', fix
this warning.

Signed-off-by: LihongX Ma <lihongx.ma at intel.com>
---
 framework/main.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/framework/main.py b/framework/main.py
index b5e5952..f6e3ae9 100755
--- a/framework/main.py
+++ b/framework/main.py
@@ -59,13 +59,13 @@ def git_build_package(gitLabel, pkgName, depot="dep"):
     else:
         print("git clone %s %s/%s" % (gitURL, depot, gitPrefix))
         ret = os.system("git clone %s %s/%s" % (gitURL, depot, gitPrefix))
-    if ret is not 0:
+    if ret != 0:
         raise EnvironmentError
 
     print("git archive --format=tar.gz --prefix=%s %s -o %s" % (gitPrefix, gitLabel, pkgName))
     ret = os.system("cd %s/%s && git archive --format=tar.gz --prefix=%s/ %s -o ../%s"
                     % (depot, gitPrefix, gitPrefix, gitLabel, pkgName))
-    if ret is not 0:
+    if ret != 0:
         raise EnvironmentError
 
 
-- 
2.7.4



More information about the dts mailing list