Browse Source

[213] Naming

Michal 'vorner' Vaner 13 years ago
parent
commit
d6a9dffdd4
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/bin/bind10/bind10_src.py.in

+ 3 - 3
src/bin/bind10/bind10_src.py.in

@@ -611,12 +611,12 @@ class BoB:
         self.log_started(newproc.pid)
         return newproc
 
-    def register_process(self, pid, info):
+    def register_process(self, pid, component):
         """
         Put another process into boss to watch over it.  When the process
-        dies, the info.failed() is called with the exit code.
+        dies, the component.failed() is called with the exit code.
         """
-        self.processes[pid] = info
+        self.processes[pid] = component
 
     def start_simple(self, name):
         """