Code

Several different i18n issues fixed following report from a_b (adresses bug #215387...
[inkscape.git] / share / extensions / text_uppercase.py
1 import chardataeffect, inkex, string
3 class C(chardataeffect.CharDataEffect):
4   def process_chardata(self,text, line=False, par=False):
5     return text.upper()
7 c = C()
8 c.affect()