Further Python3 fixes.
This commit is contained in:
@@ -41,8 +41,9 @@ def testDot(fpath):
|
||||
try:
|
||||
cmd = "%s -V" % (fpath)
|
||||
(sts,sout,serr) = Misc.safeCommandOutput(cmd)
|
||||
|
||||
if sts != -1:
|
||||
if "version" in sout + serr:
|
||||
if "version" in str(sout) + str(serr):
|
||||
return True
|
||||
except:
|
||||
pass
|
||||
|
||||
Reference in New Issue
Block a user