mirror of
https://git.freebsd.org/ports.git
synced 2025-05-21 03:23:10 -04:00
- Fix WWW line in pkg-descr - Add LICENSE information - Fix portlint issues PR: 191736 Submitted by: Gasol Wu <gasol.wu at gmail.com>
11 lines
503 B
Python
11 lines
503 B
Python
--- ./src/__init__.py.orig 2014-07-08 19:24:25.000000000 +0800
|
|
+++ ./src/__init__.py 2014-07-08 19:24:45.000000000 +0800
|
|
@@ -758,7 +758,7 @@
|
|
ret_code = self.p.poll()
|
|
if debug:
|
|
print "ret_code: " + str(ret_code)
|
|
- if ret_code != None:
|
|
+ if ret_code not in (None, 0):
|
|
if debug:
|
|
print "NOOOOO"
|
|
print "subprocess died with return code: " + repr(ret_code)
|