From db2433793c7315b61f7cbd106a5bbf003c97c575 Mon Sep 17 00:00:00 2001 From: Necoro <> Date: Tue, 12 Feb 2008 23:16:52 +0000 Subject: r769@Devoty: necoro | 2008-02-13 00:16:45 +0100 fix issue #7 --- portato/gui/gtk/windows.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'portato/gui/gtk/windows.py') diff --git a/portato/gui/gtk/windows.py b/portato/gui/gtk/windows.py index bfc5ede..ceefe0c 100644 --- a/portato/gui/gtk/windows.py +++ b/portato/gui/gtk/windows.py @@ -191,10 +191,10 @@ class UpdateWindow (AbstractDialog): for item in items: try: try: - self.queue.append(item, unmerge = False, oneshot = True) + self.queue.append(item, type = "install", oneshot = True) except PackageNotFoundException, e: if unmask_dialog(e[0]) == gtk.RESPONSE_YES : - self.queue.append(item, unmerge = False, unmask = True, oneshot = True) + self.queue.append(item, type = "install", unmask = True, oneshot = True) except BlockedException, e: blocked_dialog(e[0], e[1]) -- cgit v1.2.3-54-g00ecf