From: JINMEI Tatuya Date: Mon, 27 Feb 2012 19:22:56 +0000 (-0800) Subject: [1678] removed unnecessary (maybe harmful) return. okayed on jabber. X-Git-Tag: trac2351_base~226^2~116^2~164^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bb52e879ee7b68c162b5ad36648b9f2c0fc18f19;p=thirdparty%2Fkea.git [1678] removed unnecessary (maybe harmful) return. okayed on jabber. --- diff --git a/tests/lettuce/features/terrain/bind10_control.py b/tests/lettuce/features/terrain/bind10_control.py index 227d654336..b2a367cf23 100644 --- a/tests/lettuce/features/terrain/bind10_control.py +++ b/tests/lettuce/features/terrain/bind10_control.py @@ -206,7 +206,6 @@ def find_process_pid(step, process_name): for process in running_processes: if process[1] == process_name: return process[0] - return None assert False, "Process named " + process_name +\ " not found in output of Boss show_processes";