From f6c6b99bca04777668b6a0380107c5e51c659344 Mon Sep 17 00:00:00 2001 From: "hda@tinyerp.com" <> Date: Wed, 27 Aug 2008 14:42:12 +0530 Subject: [PATCH] remove with reserve keyword warning bzr revid: hda@tinyerp.com-20080827091212-3wimc8s3l99ws8ll --- bin/reportlab/lib/PyFontify.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/reportlab/lib/PyFontify.py b/bin/reportlab/lib/PyFontify.py index 309f7740df9..27695c25620 100644 --- a/bin/reportlab/lib/PyFontify.py +++ b/bin/reportlab/lib/PyFontify.py @@ -32,8 +32,8 @@ import re # First a little helper, since I don't like to repeat things. (Tismer speaking) import string -def replace(where, what, with): - return string.join(string.split(where, what), with) +def replace(where, what, with_whom): + return string.join(string.split(where, what), with_whom) # This list of keywords is taken from ref/node13.html of the # Python 1.3 HTML documentation. ("access" is intentionally omitted.)