diff options
author | necoro <> | 2006-10-18 17:27:31 +0000 |
---|---|---|
committer | necoro <> | 2006-10-18 17:27:31 +0000 |
commit | f1f6fb18232258b5de3267a1cae2e483cd5f7ba7 (patch) | |
tree | a73d243dcbeecebca3f592d25bb17b44a3b6fa8a /geneticone/gui/windows.py | |
parent | c9fdcf782e7ad7f54a35ab5c156cf0a2fa84ad1e (diff) | |
download | portato-f1f6fb18232258b5de3267a1cae2e483cd5f7ba7.tar.gz portato-f1f6fb18232258b5de3267a1cae2e483cd5f7ba7.tar.bz2 portato-f1f6fb18232258b5de3267a1cae2e483cd5f7ba7.zip |
fixed bug in update_world which ignored system
Diffstat (limited to 'geneticone/gui/windows.py')
-rw-r--r-- | geneticone/gui/windows.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/geneticone/gui/windows.py b/geneticone/gui/windows.py index ade3fa9..81a82cf 100644 --- a/geneticone/gui/windows.py +++ b/geneticone/gui/windows.py @@ -954,7 +954,7 @@ class MainWindow: debug("updating list:", [(x.get_cpv(), y.get_cpv()) for x,y in updating]) for pkg, old_pkg in updating: - self.queue.append(pkg.get_cpv(), options=["update from "+old_pkg.get_version()]) + self.queue.append(pkg.get_cpv()) if len(updating): self.doUpdate = True return True |