Exception fixes for Python 3 compat

This commit is contained in:
Mike Croucher 2015-02-26 14:29:40 +00:00
parent 74f8caba2b
commit c6b43d91da
8 changed files with 10 additions and 10 deletions

View file

@ -174,7 +174,7 @@ class skeleton(tree):
return connection
def to_xyz(self, channels):
raise NotImplementedError, "this needs to be implemented to use the skeleton class"
raise NotImplementedError("this needs to be implemented to use the skeleton class")
def finalize(self):