widelands-dev team mailing list archive
-
widelands-dev team
-
Mailing list archive
-
Message #04669
[Merge] lp:~widelands-dev/widelands/lua_tabs into lp:widelands
GunChleoc has proposed merging lp:~widelands-dev/widelands/lua_tabs into lp:widelands.
Requested reviews:
Widelands Developers (widelands-dev)
For more details, see:
https://code.launchpad.net/~widelands-dev/widelands/lua_tabs/+merge/278206
update_authors.py now runs fix_lua_tabs.py at the end to keep diff sizes small. This avoids crud in the diffs like I had just now.
It also implies that fix_lua_tabs.py is run every time that translations are updated and merged from Transifex.
--
Your team Widelands Developers is requested to review the proposed merge of lp:~widelands-dev/widelands/lua_tabs into lp:widelands.
=== modified file 'utils/update_authors.py'
--- utils/update_authors.py 2015-07-27 15:15:42 +0000
+++ utils/update_authors.py 2015-11-20 19:38:11 +0000
@@ -138,4 +138,8 @@
dest_filepath = source_path + "/" + dest_filename
dest_file = codecs.open(dest_filepath, encoding='utf-8', mode='w')
dest_file.write(lua_string)
+
+print("Fixing the formatting")
+import fix_lua_tabs
+fix_lua_tabs.main()
print("Done.")
Follow ups