diff options
author | Ivan Alejandro <ivanalejandro0@gmail.com> | 2014-10-03 16:45:13 -0300 |
---|---|---|
committer | Ivan Alejandro <ivanalejandro0@gmail.com> | 2014-10-28 15:30:48 -0300 |
commit | 8dfb508965f4c321ac5d511ced8dcbd0df9f515b (patch) | |
tree | 0d6441f8423402267ce91123699f415aa185b113 /data/make_project_file.py | |
parent | 6f7177f3ca359f8c3e74d094b0dcd0f9239fb069 (diff) |
Update i18n strings.
Exclude pinned providers and tests from the bitmask.pro generator since
there is no strings to translate in there.
Diffstat (limited to 'data/make_project_file.py')
-rwxr-xr-x | data/make_project_file.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/data/make_project_file.py b/data/make_project_file.py index d1567837..5519e128 100755 --- a/data/make_project_file.py +++ b/data/make_project_file.py @@ -52,7 +52,8 @@ if __name__ == '__main__': # Source files includes = ["*.py"] - excludes = ['__init__.py', '_version.py', 'ui_*.py', '*_rc.py'] + excludes = ['__init__.py', '_version.py', 'ui_*.py', '*_rc.py', + 'pinned*.py', 'tests'] sources = list_files(includes, excludes, SOURCE_ROOT) sources = " \\\n".join(["../{0}".format(f) for f in sources]) |