> File "/usr/lib/python2.3/site-packages/pygments/token.py", line 26, in > __init__ > self.subtypes = set() > NameError: global name 'set' is not defined
set() appeared in python2.4 according to: http://docs.python.org/release/2.3.5/lib/built-in-funcs.html vs http://docs.python.org/release/2.4/lib/built-in-funcs.html So the fix may be to upgrade python on the host, and the cause may be that a new version of viewcvs has been installed which now use set() whereas the previous didn't... -- Vincent Legoll