From dd635c41e68bce8433adab88d1a83d47668f3776 Mon Sep 17 00:00:00 2001 From: Marc Fiuczynski Date: Thu, 10 May 2007 22:45:08 +0000 Subject: [PATCH] Fixed typo --- python/vserver.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/vserver.py b/python/vserver.py index 6de72cb..f580354 100644 --- a/python/vserver.py +++ b/python/vserver.py @@ -131,7 +131,7 @@ class VServer: old_hard, old_soft, old_minimum = self.__get_vserver_limit(resource_type) if old_hard != VC_LIM_KEEP and old_hard <> hard: changed = True if old_soft != VC_LIM_KEEP and old_soft <> soft: changed = True - if old_minimu != VC_LIM_KEEP and old_minimum <> minimum: changed = True + if old_minimum != VC_LIM_KEEP and old_minimum <> minimum: changed = True self.limits_changed = self.limits_changed or changed ret = vserverimpl.setrlimit(self.ctx,resource_type,hard,soft,minimum) -- 2.43.0