I get this: <type 'exceptions.SyntaxError'> invalid syntax (user_agent_parser.py, line 214)
This is the line:
prefs = dict(browser=["Microsoft Internet Explorer", 'Firefox'],
dist=['WindowsMobile'] flavor=None)
Should be (comma is missing):
prefs = dict(browser=["Microsoft Internet Explorer", 'Firefox'],
dist=['WindowsMobile'], flavor=None)
Marin

