From ec6dfd255bcb3e2fa125c7ffdb8c0e43b6de3363 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sun, 14 Mar 2010 06:38:03 +0100 Subject: [PATCH] [sulfur] fix Entropy Client variables initialization --- sulfur/src/sulfur/entropyapi.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sulfur/src/sulfur/entropyapi.py b/sulfur/src/sulfur/entropyapi.py index d5df9ca16..cd78eab5d 100644 --- a/sulfur/src/sulfur/entropyapi.py +++ b/sulfur/src/sulfur/entropyapi.py @@ -293,11 +293,11 @@ class QueueExecutor: class Equo(Client): def init_singleton(self, *args, **kwargs): - Client.init_singleton(self, *args, **kwargs) + self.progress = None self.progress_log = None self.std_output = None - self.progress = None self.urlFetcher = None + Client.init_singleton(self, *args, **kwargs) self._progress_divider = 1 self.xcache = True # force xcache enabling if etpUi['debug']: