diff options
author | http://www.openid.albertlash.com/openid/ <http://www.openid.albertlash.com/openid/@web> | 2009-11-14 14:34:52 -0500 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2009-11-14 14:34:52 -0500 |
commit | 65077372fab1e6fa30c3d143e4c68123557d8441 (patch) | |
tree | 8366c9d278afd2760a78555e39b23226c5545866 /doc/tips | |
parent | df06b9201c298b03cf36ffa8223087157b1c573d (diff) |
missing apostrophe in python code
Diffstat (limited to 'doc/tips')
-rw-r--r-- | doc/tips/convert_mediawiki_to_ikiwiki.mdwn | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/tips/convert_mediawiki_to_ikiwiki.mdwn b/doc/tips/convert_mediawiki_to_ikiwiki.mdwn index ab6984494..e57144109 100644 --- a/doc/tips/convert_mediawiki_to_ikiwiki.mdwn +++ b/doc/tips/convert_mediawiki_to_ikiwiki.mdwn @@ -38,7 +38,7 @@ to adjust this script too: anchors = pagetable.getElementsByTagName("a") for a in anchors: print a.firstChild.toxml().\ - replace('&,'&').\ + replace('&','&').\ replace('<','<').\ replace('>','>') |