Fix validation typo preventing the newer symbols from properly working.

This commit is contained in:
Mike Auty
2017-07-10 00:04:29 +01:00
parent 4fb88c4636
commit d80fbf1a69
+1 -1
View File
@@ -26,7 +26,7 @@ class Symbol(validity.ValidityRoutines):
self._constant_data = None
if constant_data is not None:
self._constant_data = self._check_type(bytes, constant_data)
self._constant_data = self._check_type(constant_data, bytes)
@property
def name(self):