Fix a missed variable rename in MSUStatusWindowController.py

This commit is contained in:
Greg Neagle
2013-02-13 11:53:29 -08:00
parent 743b37ef03
commit 881f9f0ae5
@@ -194,7 +194,7 @@ class MSUStatusWindowController(NSObject):
NSLog(repr(data))
a_buffer = a_buffer + data
# do we have at least one return character?
if buffer.count('\n'):
if a_buffer.count('\n'):
lines = a_buffer.splitlines(True)
a_buffer = ''
for line in lines: