Don't fail on windows that don't have names.

This commit is contained in:
Eratosthenes 2010-12-18 10:43:56 -05:00
parent 3b6867df29
commit d8cf53a2bd

View File

@ -49,7 +49,7 @@ class Table(Table_Window):
WinListDict = CGWindowListCreateDescriptionFromArray(WinList)
for d in WinListDict:
if re.search(self.search_string, d[kCGWindowName], re.I):
if re.search(self.search_string, d.get(kCGWindowName, ""), re.I):
title = d[kCGWindowName]
if self.check_bad_words(title): continue
self.number = d[kCGWindowNumber]