Hi,
After upgrading to 2.4 (from 2.3), I'm getting a weird syntax error:
[color=blue][color=green][color=darkred]
>>> import themes[/color][/color][/color]
Traceback (most recent call last):
File "<interacti ve input>", line 1, in ?
File "themes.py" , line 564
font = self.font.makeB lackAndWhite(),
additive = self.additive,
^
SyntaxError: invalid syntax
The relevant code is:
def makeBlackAndWhi te( self ):
return CharStyle( names = self.names,
basedOn = self.basedOn.ma keBlackAndWhite (),
font = self.font.makeB lackAndWhite(),
additive = self.additive,
prefixText = self.prefixText )
This is a method in the CharStyle class which returns a new modified
instance of CharStyle.
I'm using Windows XP and Python 2.4.1
Any ideas? O:-)
After upgrading to 2.4 (from 2.3), I'm getting a weird syntax error:
[color=blue][color=green][color=darkred]
>>> import themes[/color][/color][/color]
Traceback (most recent call last):
File "<interacti ve input>", line 1, in ?
File "themes.py" , line 564
font = self.font.makeB lackAndWhite(),
additive = self.additive,
^
SyntaxError: invalid syntax
The relevant code is:
def makeBlackAndWhi te( self ):
return CharStyle( names = self.names,
basedOn = self.basedOn.ma keBlackAndWhite (),
font = self.font.makeB lackAndWhite(),
additive = self.additive,
prefixText = self.prefixText )
This is a method in the CharStyle class which returns a new modified
instance of CharStyle.
I'm using Windows XP and Python 2.4.1
Any ideas? O:-)
Comment