Don't fail on windows that don't have names.
This commit is contained in:
+1
-1
@@ -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]
|
||||
|
||||
Reference in New Issue
Block a user