summaryrefslogtreecommitdiff
path: root/portato/gui
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2009-03-02 21:27:46 +0100
committerRené 'Necoro' Neumann <necoro@necoro.net>2009-03-02 21:27:46 +0100
commit3cd0926203e1a6e7c8bd50a8195336c85daf9f25 (patch)
treedab2502fc327646e64e834e66cb4776ee3f38028 /portato/gui
parent3f02f33cc7bd3546453d22d072131218d5cdc1d0 (diff)
downloadportato-3cd0926203e1a6e7c8bd50a8195336c85daf9f25.tar.gz
portato-3cd0926203e1a6e7c8bd50a8195336c85daf9f25.tar.bz2
portato-3cd0926203e1a6e7c8bd50a8195336c85daf9f25.zip
Fix search
Diffstat (limited to 'portato/gui')
-rw-r--r--portato/gui/windows/main.py3
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 == []: