remove with reserve keyword warning

bzr revid: hda@tinyerp.com-20080827091212-3wimc8s3l99ws8ll
This commit is contained in:
hda@tinyerp.com 2008-08-27 14:42:12 +05:30
parent 9dbb510f72
commit f6c6b99bca
1 changed files with 2 additions and 2 deletions

View File

@ -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.)