From 9008ced144a09a5057ffa15d4fdc05a172ef430a Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Fri, 29 Jan 2010 13:22:20 +0100 Subject: [PATCH] [FIX] typo bzr revid: chs@tinyerp.com-20100129122220-yexokxsfbaulntm2 --- bin/netsvc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/netsvc.py b/bin/netsvc.py index b47faba823e..49d68c8479e 100644 --- a/bin/netsvc.py +++ b/bin/netsvc.py @@ -58,7 +58,7 @@ class Service(object): @classmethod def remove(cls, name): - if cls.exits(name): + if cls.exists(name): cls._services.pop(name) def exportMethod(self, method):