You're problem is not with Spyder, it is apparently with an error in your .spyder.ini config file. You seem to be missing a balancing quote in line 430 (perhaps due to a truncated line somewhere). Look at the end of the traceback to see the first call that caused the error:
The string that the parser is complaining about at line 430 of .spyder.ini is: "ace', 'DejaVu Sans Mono', 'Consolas', 'Courier New', 'Bitst ream Vera Sans Mono', 'Andale Mono', 'Liberation Mono', 'Monaco', 'Courier', 'mo nospace', 'Fixed', 'Terminal']\n" Note the overall string in " " quotes contains a list of font names in ' ' quotes, except that the first font is missing it's opening ' due to an apparent truncation (only part of the font name is listed). -- You received this message because you are subscribed to the Google Groups "spyder" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/spyderlib?hl=en.
