summaryrefslogtreecommitdiff
path: root/portato
diff options
context:
space:
mode:
authorNecoro <>2008-02-12 23:16:52 +0000
committerNecoro <>2008-02-12 23:16:52 +0000
commitdb2433793c7315b61f7cbd106a5bbf003c97c575 (patch)
tree1a81ef33a4da56ed4ac2c6a27f1c92f121b1fdfd /portato
parent025e03b4e6baefdbd6ca00cacdd520e1493bdf7e (diff)
downloadportato-db2433793c7315b61f7cbd106a5bbf003c97c575.tar.gz
portato-db2433793c7315b61f7cbd106a5bbf003c97c575.tar.bz2
portato-db2433793c7315b61f7cbd106a5bbf003c97c575.zip
r769@Devoty: necoro | 2008-02-13 00:16:45 +0100
fix issue #7
Diffstat (limited to 'portato')
-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])