diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2009-02-17 02:04:21 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2009-02-17 02:04:21 +0100 |
commit | 681206c93dcc0c0a9e159345af601e121fe963de (patch) | |
tree | ed907d08d0f5046534382d153ce4b54343f79f28 /portato/gui/windows | |
parent | 30105f0db94f4593c500eb853dbfb6d593abc532 (diff) | |
download | portato-681206c93dcc0c0a9e159345af601e121fe963de.tar.gz portato-681206c93dcc0c0a9e159345af601e121fe963de.tar.bz2 portato-681206c93dcc0c0a9e159345af601e121fe963de.zip |
Fixed manual search
Diffstat (limited to '')
-rw-r--r-- | portato/gui/windows/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/gui/windows/main.py b/portato/gui/windows/main.py index 8d5e5ae..443fa76 100644 --- a/portato/gui/windows/main.py +++ b/portato/gui/windows/main.py @@ -610,7 +610,7 @@ class MainWindow (Window): if best: p = best else: - p = system.find_packages(cp)[0] + p = system.find_packages(cp, masked = True)[0] self.packageTable.update(p, **kwargs) |