Explorar el Código

Remove unused variable

Mike Naberezny hace 11 años
padre
commit
61c6dc684b
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      supervisor/supervisorctl.py

+ 1 - 1
supervisor/supervisorctl.py

@@ -927,7 +927,7 @@ class DefaultControllerPlugin(ControllerPluginBase):
         supervisor = self.ctl.get_supervisor()
         for name in names:
             try:
-                result = supervisor.removeProcessGroup(name)
+                supervisor.removeProcessGroup(name)
             except xmlrpclib.Fault, e:
                 if e.faultCode == xmlrpc.Faults.STILL_RUNNING:
                     self.ctl.output('ERROR: process/group still running: %s'