From: Leandro Lucarella Date: Thu, 15 Nov 2007 12:58:20 +0000 (-0300) Subject: Bugfix: call ProcessInfo.stop() in the right way (without parameters). X-Git-Url: https://git.llucax.com/software/pymin.git/commitdiff_plain/bdc7c3f6286c768cf683b78dfb5576c733121a8b?ds=inline;hp=--cc Bugfix: call ProcessInfo.stop() in the right way (without parameters). --- bdc7c3f6286c768cf683b78dfb5576c733121a8b diff --git a/pymin/procman.py b/pymin/procman.py index 9242d86..0330e23 100644 --- a/pymin/procman.py +++ b/pymin/procman.py @@ -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