mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-08 09:28:41 +00:00
Revert "[Py2to3] Clean-up the use of keys() on dictionary objects."
This reverts commit 8b50f3cdbd
.
This commit is contained in:
parent
c4282f29ab
commit
3f72905b3f
47 changed files with 97 additions and 95 deletions
|
@ -61,8 +61,9 @@ def generate():
|
|||
"""
|
||||
Return the generated output.
|
||||
"""
|
||||
keys = MESSAGES.keys()
|
||||
# the keys are sorted in the .mo file
|
||||
keys = sorted(MESSAGES)
|
||||
keys.sort()
|
||||
offsets = []
|
||||
ids = strs = ''
|
||||
for _id in keys:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue