Quick fix to make uppercase tags work properly.

2004-04-29  Manish Singh  <yosh@gimp.org>

        * plug-ins/pygimp/plug-ins/py-slice.py: Quick fix to make uppercase
        tags work properly.
This commit is contained in:
Manish Singh 2004-04-29 16:09:09 +00:00 committed by Manish Singh
parent 2a84015e39
commit 3d293ea0f7
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2004-04-29 Manish Singh <yosh@gimp.org>
* plug-ins/pygimp/plug-ins/py-slice.py: Quick fix to make uppercase
tags work properly.
2004-04-29 Michael Natterer <mitch@gimp.org>
* app/tools/gimp*tool.c (gimp_*_tool_register): stripped the menu

View File

@ -150,6 +150,7 @@ class TableWriter:
def write(self, s, vals=None):
if self.capitalize:
s = s.upper()
s = s.replace('%S', '%s')
else:
s = s.lower()