From 71e57d090d070686746ee63b855e38cb337dc5cc Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 11 Nov 1993 15:03:51 +0000 Subject: Fix the fix :-( --- Objects/stringobject.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Objects/stringobject.c b/Objects/stringobject.c index d40b908..ed5af57 100644 --- a/Objects/stringobject.c +++ b/Objects/stringobject.c @@ -818,6 +818,8 @@ formatstring(format, args) res = getstringvalue(result) + reslen - rescnt; } if (sign) { + if (fill != ' ') + *res++ = sign; rescnt--; if (width > len) width--; @@ -828,7 +830,7 @@ formatstring(format, args) *res++ = fill; } while (--width > len); } - if (sign) + if (sign && fill == ' ') *res++ = sign; memcpy(res, buf, len); res += len; -- cgit v0.12