mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-05 03:47:57 +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
|
@ -11,6 +11,8 @@
|
|||
|
||||
"""Parses Python and Javascript code for translation strings to create the 'deluge.pot' template for translators"""
|
||||
|
||||
from __future__ import print_function
|
||||
|
||||
import os
|
||||
import re
|
||||
from datetime import datetime
|
||||
|
@ -30,7 +32,7 @@ WEBUI_RENDER_DIR = "deluge/ui/web/render"
|
|||
INFILES_LIST = "infiles.list"
|
||||
POT_FILEPATH = os.path.join("deluge", "i18n", "deluge.pot")
|
||||
|
||||
RE_EXC_PLUGIN_BUILD = re.compile("deluge\/plugins\/.*\/build")
|
||||
RE_EXC_PLUGIN_BUILD = re.compile("deluge\\/plugins\\/.*\\/build")
|
||||
|
||||
xgettext_cmd = [
|
||||
"xgettext",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue