geertj / gruvi

Async IO for Python, Simplified
http://gruvi.readthedocs.org/
MIT License
94 stars 12 forks source link

Bug fix: Unmarshal big endian messages correctly. #2

Closed cocagne closed 10 years ago

cocagne commented 10 years ago

The endianness of the message was parsed correctly, but the endianness was not passed to hte unmarshal function, which defaults to little-endian. This caused big endian data to be unmarshalled incorrectly.

(Passing on a fix to the official txdbus sources by Jaakko Korkeaniemi)

geertj commented 10 years ago

Thank you! Applied.