Code

Translations. French translation minor update.
[inkscape.git] / share / extensions / color_removeblue.py
1 #!/usr/bin/env python
2 import coloreffect
4 class C(coloreffect.ColorEffect):
5   def colmod(self,r,g,b):
6     return '%02x%02x%02x' % (r,g,0)
8 c = C()
9 c.affect()