Parcourir la source

[2353] Indent code

Mukund Sivaraman il y a 12 ans
Parent
commit
9b6c74f8e8
1 fichiers modifiés avec 4 ajouts et 2 suppressions
  1. 4 2
      src/bin/bind10/bind10_src.py.in

+ 4 - 2
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)