diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2009-03-02 21:27:46 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2009-03-02 21:27:46 +0100 |
commit | 3cd0926203e1a6e7c8bd50a8195336c85daf9f25 (patch) | |
tree | dab2502fc327646e64e834e66cb4776ee3f38028 /portato/gui/windows | |
parent | 3f02f33cc7bd3546453d22d072131218d5cdc1d0 (diff) | |
download | portato-3cd0926203e1a6e7c8bd50a8195336c85daf9f25.tar.gz portato-3cd0926203e1a6e7c8bd50a8195336c85daf9f25.tar.bz2 portato-3cd0926203e1a6e7c8bd50a8195336c85daf9f25.zip |
Fix search
Diffstat (limited to '')
-rw-r--r-- | portato/gui/windows/main.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/portato/gui/windows/main.py b/portato/gui/windows/main.py index 793d1b6..5b3bf7e 100644 --- a/portato/gui/windows/main.py +++ b/portato/gui/windows/main.py @@ -1646,6 +1646,9 @@ class MainWindow (Window): """Do a search.""" text = entry.get_text() if text != "": + if not "*" in text: + text = ".*%s.*" % text + packages = system.find_packages(text, with_version = False) if packages == []: |