Skip to content

Commit

Permalink
addressing masked array writing error
Browse files Browse the repository at this point in the history
  • Loading branch information
iannesbitt committed Nov 27, 2019
1 parent a18c93e commit f609a5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rsudp/c_write.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def getq(self):
pass
else:
self.stream = RS.update_stream(
stream=self.stream, d=d, fill_value=None)
stream=self.stream, d=d, fill_value=0)
if not self.refcha:
self.refcha = RS.getCHN(d)
if self.refcha in str(d):
Expand Down

1 comment on commit f609a5b

@iannesbitt
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

addresses #1

Please sign in to comment.