diff options
author | Ruben Pollan <meskio@sindominio.net> | 2014-10-03 15:54:31 -0500 |
---|---|---|
committer | Ruben Pollan <meskio@sindominio.net> | 2014-10-03 15:54:31 -0500 |
commit | 2e1ea69c83cc698da15765b7a014d6f21477f12e (patch) | |
tree | c1c0f4969fc7db7a6cace2759444c93853c468cb /data/make_project_file.py | |
parent | 93750f2371555ad0c769c62c1bd179e2b96c282c (diff) | |
parent | fd362fecd88ad7d5692dcd5686c3f05d46cb3c45 (diff) |
Merge branch 'ivan/feature/update-i18n-strings' into develop
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]) |