Hello,
I noticed the code does not work with python3 (there is at least one print statement to replace).
And the shebang is #!/usr/bin/env python which may target python3 nowadays (if not the default on the OS, it is often the case when calling python from a virtualenv).
Updating the shebang to #!/usr/bin/env python2 would perhaps be a first workaround.
Thanks for your work on this
Etienne
Hello,
I noticed the code does not work with python3 (there is at least one print statement to replace).
And the shebang is
#!/usr/bin/env pythonwhich may target python3 nowadays (if not the default on the OS, it is often the case when callingpythonfrom a virtualenv).Updating the shebang to
#!/usr/bin/env python2would perhaps be a first workaround.Thanks for your work on this
Etienne