Code

fix xml prefix in Barcode; another partial fix for Bug #179770
authoracspike <acspike@users.sourceforge.net>
Sat, 5 Jan 2008 21:15:26 +0000 (21:15 +0000)
committeracspike <acspike@users.sourceforge.net>
Sat, 5 Jan 2008 21:15:26 +0000 (21:15 +0000)
share/extensions/Barcode/Base.py

index ccfca0093f5929d42b097ad01c452e4183ab138b..866d80e9e32c01f6b2d42c18c6adade674577459 100644 (file)
@@ -111,7 +111,7 @@ class Barcode:
         text.set( 'x', str(int(self.x) + int(barwidth / 2)) )
         text.set( 'y', str(int(self.height) + 10 + int(self.y)) )
         text.set( 'style', 'font-size:' + self.fontSize() + 'px;text-align:center;text-anchor:middle;' )
-        text.set( 'xml:space', 'preserve' )
+        text.set( '{http://www.w3.org/XML/1998/namespace}space', 'preserve' )
         text.set( 'id', name + '_bottomtext' )
 
         text.text = str(self.label)