From 3d293ea0f741a9fcbdcaf520268f77149dc85d33 Mon Sep 17 00:00:00 2001 From: Manish Singh Date: Thu, 29 Apr 2004 16:09:09 +0000 Subject: [PATCH] Quick fix to make uppercase tags work properly. 2004-04-29 Manish Singh * plug-ins/pygimp/plug-ins/py-slice.py: Quick fix to make uppercase tags work properly. --- ChangeLog | 5 +++++ plug-ins/pygimp/plug-ins/py-slice.py | 1 + 2 files changed, 6 insertions(+) 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()