PhilReinhold / liveplot

visualize your python data as it comes in, with minimal intrusion
11 stars 5 forks source link

Cannot pip install directly, python syntax error #13

Open CygnusRavus opened 2 years ago

CygnusRavus commented 2 years ago

Appears that the last couple of lines of setup.py has a

except ImportError: print 'py2exe not found. py2exe command not available'

Adding parentheses fixes the problem:

except ImportError: print ('py2exe not found. py2exe command not available')