Replace/remove usage of dict.keys()

This commit is contained in:
Calum Lind 2017-03-16 21:39:57 +00:00
parent 4a274466ac
commit af7e83bc76
38 changed files with 74 additions and 78 deletions

View file

@ -62,7 +62,7 @@ def generate():
Return the generated output.
"""
# the keys are sorted in the .mo file
keys = sorted(MESSAGES.keys())
keys = sorted(MESSAGES)
offsets = []
ids = strs = ''
for _id in keys: