forked from spyder-ide/spyder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgettext_scan.py
More file actions
19 lines (17 loc) · 791 Bytes
/
gettext_scan.py
File metadata and controls
19 lines (17 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# -*- coding: utf-8 -*-
#
# Copyright © Spyder Project Contributors
# Licensed under the terms of the MIT License
# (see spyder/__init__.py for details)
from gettext_helpers import do_rescan, do_rescan_files
if __name__ == "__main__":
do_rescan("spyder")
do_rescan_files(["spyder_pylint/pylint.py",
"spyder_pylint/widgets/pylintgui.py"],
"pylint", "spyder_pylint")
do_rescan_files(["spyder_profiler/profiler.py",
"spyder_profiler/widgets/profilergui.py"],
"profiler", "spyder_profiler")
do_rescan_files(["spyder_breakpoints/breakpoints.py",
"spyder_breakpoints/widgets/breakpointsgui.py"],
"breakpoints", "spyder_breakpoints")