Skip to content
Snippets Groups Projects
Commit 037994e9 authored by Andrew Tridgell's avatar Andrew Tridgell
Browse files

Fixed dependency on MAVError in mavparse

parent 5b9af598
Branches release
No related tags found
No related merge requests found
...@@ -104,7 +104,7 @@ class MAVField(object): ...@@ -104,7 +104,7 @@ class MAVField(object):
elif self.type in ['int64_t', 'uint64_t']: elif self.type in ['int64_t', 'uint64_t']:
return 93372036854775807 + self.wire_offset*63 + i return 93372036854775807 + self.wire_offset*63 + i
else: else:
raise MAVError('unknown type %s' % self.type) raise MAVParseError('unknown type %s' % self.type)
def set_test_value(self): def set_test_value(self):
'''set a testsuite value for a MAVField''' '''set a testsuite value for a MAVField'''
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment