|
From: David S. <dsc...@vy...> - 2001-10-08 19:12:04
|
[Bruce writes] > Maybe there's a bad copy of graph.py in our Linux distribution files? No. The SyntaxError below is caused by the use of the **args syntax, which is not supported by Python 1.5.2. I don't know whether the Linux distribution is supposed to run on 1.5.2 or not. If it is, this line needs to be replaced, e.g. apply( gvbars.__init__, (self,), args) If not, the solution is to upgrade to a more recent version of Python. Dave > > gvbars.__init__(self, **args) > > ^ > > SyntaxError: invalid syntax |