don't search for empty string in alltorrents.py

This commit is contained in:
Nick Lanham 2011-02-24 12:11:14 +01:00
parent ee75786e40
commit 5ae242472f
1 changed files with 4 additions and 1 deletions

View File

@ -622,7 +622,10 @@ class AllTorrents(BaseMode):
self.entering_search = False
elif c == 10 or c == curses.KEY_ENTER:
self.entering_search = False
if self.search_string:
self.__do_search()
else:
self.search_string = None
elif c > 31 and c < 256:
stroke = chr(c)
uchar = ""