Skip to content

Commit

Permalink
Fix error WindowInfo.windowName == NoneType when running unit tests o…
Browse files Browse the repository at this point in the history
…n Windows
  • Loading branch information
cztomczak committed Apr 14, 2017
1 parent a529208 commit f7398c2
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/window_info.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ cdef class WindowInfo:

def __init__(self, title=""):
self.transparentPainting = False
self.windowName = ""
if title:
self.windowName = title

Expand Down

0 comments on commit f7398c2

Please sign in to comment.