From 2f86ec6ccda1470ee21c21054f7bd1ccd15bffc3 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sat, 21 Jun 2014 09:20:39 +0530 Subject: [PATCH] ... --- setup/installer/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/installer/__init__.py b/setup/installer/__init__.py index 3102a1ba80..aa0d3d56b8 100644 --- a/setup/installer/__init__.py +++ b/setup/installer/__init__.py @@ -16,7 +16,7 @@ EXCLUDES = [] for x in [ 'src/calibre/plugins', 'manual', '.bzr', '.git', '.build', '.svn', 'build', 'dist', 'imgsrc', '*.pyc', '*.pyo', '*.swp', - '*.swo', 'format_docs']: + '*.swo', 'format_docs', 'translations']: EXCLUDES.extend(['--exclude', x]) SAFE_EXCLUDES = ['"%s"'%x if '*' in x else x for x in EXCLUDES]