Author: iwontbecreative
Date: Sun Oct 23 21:49:27 2011
New Revision: 51596

URL: http://svn.gna.org/viewcvs/wesnoth?rev=51596&view=rev
Log:
Fixed an issue where terrain2wiki.py would not remove # wmllint: ignore from 
output

Modified:
    trunk/data/tools/terrain2wiki.py

Modified: trunk/data/tools/terrain2wiki.py
URL: 
http://svn.gna.org/viewcvs/wesnoth/trunk/data/tools/terrain2wiki.py?rev=51596&r1=51595&r2=51596&view=diff
==============================================================================
--- trunk/data/tools/terrain2wiki.py (original)
+++ trunk/data/tools/terrain2wiki.py Sun Oct 23 21:49:27 2011
@@ -65,7 +65,7 @@
 | %s
 """ % (
 content['editor_name'][4:-1] if 'editor_name' in content else 
content['name'][4:-1],
-content['string'].lstrip(" # wmllint: ignore"),
+content['string'].replace("# wmllint: ignore", ""),
 content['aliasof'] if 'aliasof' in content else "",
 content['editor_group'])
 


_______________________________________________
Wesnoth-commits mailing list
[email protected]
https://mail.gna.org/listinfo/wesnoth-commits

Reply via email to