]> git.llucax.com Git - software/pymin.git/blobdiff - pymin/procman.py
Bugfix: call ProcessInfo.stop() in the right way (without parameters).
[software/pymin.git] / pymin / procman.py
index 9242d86723f5ae2a2562aaaf148986797ffc0a66..0330e23542886dc0880e351f0538b01d88b4fe0a 100644 (file)
@@ -84,7 +84,7 @@ class ProcessManager:
 
     def stop(self, name):
         assert name in self.namemap
-        self.namemap[name].stop(name)
+        self.namemap[name].stop()
 
     def kill(self, name, signum):
         assert name in self.namemap