Comment 18 for bug 425630

Revision history for this message
Severin H (severinh) wrote :

re.sub(luser, repl, config)

could be replaced by

config.replace(luser, repl)

as luser is not a regular expression, but both versions will do the job just fine.