minor PEP8 cleanup (" -> ')

This commit is contained in:
Overwatch 2014-08-19 16:29:56 +02:00
parent 6416b66f6e
commit 61fb3b1044
18 changed files with 456 additions and 456 deletions

View file

@ -8,7 +8,7 @@ import sys
try:
from .cython_m import mat4, vec3
except ImportError:
print("!!! [%s] unable to load native implementation, using python instead" %(__name__), file=sys.stderr)
print('!!! [%s] unable to load native implementation, using python instead' %(__name__), file=sys.stderr)
from .python_m import mat4, vec3
del sys