diff --git a/ChangeLog b/ChangeLog index 1a9975ad1a..9cc8ec299e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-04-29 Manish Singh + + * plug-ins/pygimp/plug-ins/py-slice.py: Quick fix to make uppercase + tags work properly. + 2004-04-29 Michael Natterer * app/tools/gimp*tool.c (gimp_*_tool_register): stripped the menu diff --git a/plug-ins/pygimp/plug-ins/py-slice.py b/plug-ins/pygimp/plug-ins/py-slice.py index 00d3a99faa..6bffa39426 100755 --- a/plug-ins/pygimp/plug-ins/py-slice.py +++ b/plug-ins/pygimp/plug-ins/py-slice.py @@ -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()