From ca010ca7d7cdef36eb5306cd71866ee527b42f1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A5=D0=B8=D1=80=D0=B5=D1=86=D0=BA=D0=B8=D0=B9=20=D0=9C?= =?UTF-8?q?=D0=B8=D1=85=D0=B0=D0=B8=D0=BB?= Date: Wed, 14 Nov 2012 17:16:11 +0400 Subject: [PATCH] Fix action variable --- update/variables/action.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/update/variables/action.py b/update/variables/action.py index 9fe0c5c..cf4f42c 100644 --- a/update/variables/action.py +++ b/update/variables/action.py @@ -24,11 +24,11 @@ setLocalTranslate('cl_update3',sys.modules[__name__]) class VariableAcUpdateSync(ReadonlyVariable): """ - Action variable which has value "up" for package install and + Action variable which has value "on" for package install and install this package """ def get(self): action = self.Get("cl_action") if action in ("sync",): - return "up" + return "on" return ""