it should be:
if self.activated:
self.file.write(raw_data)
else:
return raw_data(notice the else is at the same level of the if) On Mon, Nov 21, 2011 at 9:47 AM, Kerrisha Nelson <[email protected]>wrote: > if self.activated: > self.file.write(raw_data) > else: > return raw_data >
