Mercurial > hg-stable
changeset 9998:4a3c388f8c69
setup: don't ship i18n directory
The directory was never actually used at runtime and other programs
don't ship it either.
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Thu, 03 Dec 2009 20:41:43 +0100 |
parents | c08583734fc5 |
children | f91e5630ce7e |
files | setup.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/setup.py Thu Dec 03 11:07:14 2009 +0100 +++ b/setup.py Thu Dec 03 20:41:43 2009 +0100 @@ -256,7 +256,7 @@ packages.extend(['hgext.inotify', 'hgext.inotify.linux']) datafiles = [] -for root in ('templates', 'i18n', 'help'): +for root in ('templates', 'help'): for dir, dirs, files in os.walk(root): dirs[:] = [x for x in dirs if not x.startswith('.')] files = [x for x in files if not x.startswith('.')]