mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-04 19:38:03 +03:00
[Lint] Cleanup helper scripts to pass PyLint
This commit is contained in:
parent
807fa609f9
commit
d280fa9fbd
7 changed files with 30 additions and 20 deletions
|
@ -27,6 +27,7 @@ Options:
|
|||
"""
|
||||
|
||||
import array
|
||||
import ast
|
||||
import getopt
|
||||
import os
|
||||
import struct
|
||||
|
@ -51,7 +52,6 @@ def add(msgid, transtr, fuzzy):
|
|||
"""
|
||||
Add a non-fuzzy translation to the dictionary.
|
||||
"""
|
||||
global MESSAGES
|
||||
if not fuzzy and transtr and not transtr.startswith('\0'):
|
||||
MESSAGES[msgid] = transtr
|
||||
|
||||
|
@ -60,7 +60,6 @@ def generate():
|
|||
"""
|
||||
Return the generated output.
|
||||
"""
|
||||
global MESSAGES
|
||||
keys = MESSAGES.keys()
|
||||
# the keys are sorted in the .mo file
|
||||
keys.sort()
|
||||
|
@ -165,8 +164,7 @@ def make(filename, outfile):
|
|||
l = l.strip()
|
||||
if not l:
|
||||
continue
|
||||
# XXX: Does this always follow Python escape semantics?
|
||||
l = eval(l)
|
||||
l = ast.literal_eval(l)
|
||||
if section == section_id:
|
||||
msgid += l
|
||||
elif section == section_str:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue