loli / medpy

Medical image processing in Python
http://loli.github.io/medpy/
GNU General Public License v3.0
571 stars 138 forks source link

Python3 syntax error fixed. #9

Closed mamrehn closed 9 years ago

mamrehn commented 9 years ago

raise RuntimeError 'Only one instance of Logger is allowed!' needs to be raise RuntimeError('Only one instance of Logger is allowed!') to work as valid python 3.4 syntax.

loli commented 9 years ago

Thank you very much - the first step on the long way to Python 3 compatibility :)