diff options
author | Necoro <> | 2008-02-12 23:16:52 +0000 |
---|---|---|
committer | Necoro <> | 2008-02-12 23:16:52 +0000 |
commit | db2433793c7315b61f7cbd106a5bbf003c97c575 (patch) | |
tree | 1a81ef33a4da56ed4ac2c6a27f1c92f121b1fdfd /portato/gui/gtk/windows.py | |
parent | 025e03b4e6baefdbd6ca00cacdd520e1493bdf7e (diff) | |
download | portato-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/gui/gtk/windows.py')
-rw-r--r-- | portato/gui/gtk/windows.py | 4 |
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]) |