From: Mukund Sivaraman Date: Tue, 6 Nov 2012 03:29:42 +0000 (+0530) Subject: [2353] Indent code X-Git-Tag: bind10-1.0.0-beta-release~19^2~103 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9b6c74f8e85b29db87fb4724698d9fb9cc53dcc4;p=thirdparty%2Fkea.git [2353] Indent code --- diff --git a/src/bin/bind10/bind10_src.py.in b/src/bin/bind10/bind10_src.py.in index 45a2ccb961..2d31333905 100755 --- a/src/bin/bind10/bind10_src.py.in +++ b/src/bin/bind10/bind10_src.py.in @@ -738,10 +738,12 @@ class BoB: try: (pid, exit_status) = self._get_process_exit_status() except OSError as o: - if o.errno == errno.ECHILD: break + if o.errno == errno.ECHILD: + break # XXX: should be impossible to get any other error here raise - if pid == 0: break + if pid == 0: + break if pid in self.components: # One of the components we know about. Get information on it. component = self.components.pop(pid)