robofont-mechanic / Mechanic

Package manager for RoboFont extensions
http://robofontmechanic.com
MIT License
26 stars 7 forks source link

Python 3 invalid syntax #23

Closed typoman closed 6 years ago

typoman commented 6 years ago
Installing 'Mechanic' report:
  Traceback (most recent call last):
      File "_startup.py", line 5, in <module>
      File "/Users/xx/Library/Application Support/RoboFont/plugins/Mechanic.roboFontExt/lib/mechanic/observers/update.py", line 3, in <module>
      File "/Users/xx/Library/Application Support/RoboFont/plugins/Mechanic.roboFontExt/lib/mechanic/threaded.py", line 68
        print "\n".join(errorMessage)
                 ^
    SyntaxError: invalid syntax
miguelsousa commented 6 years ago

That's an easy fix.

print("\n".join(errorMessage))
jackjennings commented 6 years ago

Fixed now in #20 — thanks for reporting!