Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: cms/sources.py

Issue 29317015: Issue 2625 - [cms] Crowdin synchronisation script (Closed)
Patch Set: Give query_params a default value Created July 16, 2015, 12:47 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cms/converters.py ('k') | cms/utils.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cms/sources.py
diff --git a/cms/sources.py b/cms/sources.py
index 51770027059033470ef3652bb0756ee44370f217..ae4ce7575573c764d965fd027c32c04e7af60904 100644
--- a/cms/sources.py
+++ b/cms/sources.py
@@ -16,6 +16,7 @@
# along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
import codecs
+import collections
import ConfigParser
import json
import os
@@ -168,10 +169,9 @@ class Source:
def read_locale(self, locale, page):
default_locale = self.read_config().get("general", "defaultlocale")
- if locale == default_locale:
- result = {}
- else:
- result = dict(self.read_locale(default_locale, page))
+ result = collections.OrderedDict()
+ if locale != default_locale:
+ result.update(self.read_locale(default_locale, page))
if self.has_locale(locale, page):
filedata = self.read_file(self.locale_filename(locale, page))
« no previous file with comments | « cms/converters.py ('k') | cms/utils.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld