From f3e7ac1ce47a04098d59b2012f5d7681c7175bb2 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Sat, 14 May 2011 10:16:38 +0200 Subject: [PATCH] [equo] do not respawn equo during "equo upgrade" if --fetch is provided, close bug #2421 --- client/text_ui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/text_ui.py b/client/text_ui.py index 222248465..f65a07129 100644 --- a/client/text_ui.py +++ b/client/text_ui.py @@ -531,7 +531,7 @@ def upgrade_packages(entropy_client, onlyfetch = False, replay = False, # Entropy Client SystemSettings plugin entropy_client.Settings().clear() - if update and not etpUi['pretend']: + if update and (not etpUi['pretend']) and (not onlyfetch): # if updates have been installed, check if there are more # to come (perhaps critical updates were installed) _upgrade_packages_respawn(entropy_client)