summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--portato/gui/gtk/windows.py4
1 files changed, 2 insertions, 2 deletions
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])