Fix another syntax error with newer Python versions

This commit is contained in:
Sebastian Dröge 2013-09-30 13:27:33 +02:00
parent d0f12f81c8
commit 25a0d4b8f9

View file

@ -1,4 +1,4 @@
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
print __path__, __name__
print(__path__, __name__)