test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V1] framework/main: fix warning of syntax
@ 2020-07-30  0:36 LihongX Ma
  2020-08-12  6:55 ` Tu, Lijuan
  0 siblings, 1 reply; 2+ messages in thread
From: LihongX Ma @ 2020-07-30  0:36 UTC (permalink / raw)
  To: dts; +Cc: LihongX, Ma

From: "LihongX, Ma" <lihongx.ma@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@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


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-08-12  6:55 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-30  0:36 [dts] [PATCH V1] framework/main: fix warning of syntax LihongX Ma
2020-08-12  6:55 ` Tu, Lijuan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).