Like Martin, I'm not sure where parallelizer.py is coming from; I presume it's either your code or a module that you're importing. It looks like it's using a dictionary comprehension, which is not supported in Python 2.6 (only 2.7 and above). It looks like you're using Python 2.6, from your command line that you posted.
On Fri, Apr 26, 2013 at 7:46 AM, Martin Zibricky <[email protected]>wrote: > Mathew Schwartz píše v Čt 25. 04. 2013 v 18:39 -0700: > > 4019 INFO: checking Tree 6555 ERROR: invalid syntax (parallelizer.py, > > line 132) > > Where does parallelizer.py come from? > > Could you provide some simple code that causes that? > > -- > You received this message because you are subscribed to the Google Groups > "PyInstaller" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/pyinstaller?hl=en. > For more options, visit https://groups.google.com/groups/opt_out. > > > -- Daniel Hyams [email protected] -- You received this message because you are subscribed to the Google Groups "PyInstaller" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pyinstaller?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
