# HG changeset patch # User Martin Geisler # Date 1259869303 -3600 # Node ID 4a3c388f8c69d21686f76d0700f31a24c7014881 # Parent c08583734fc56f9a0082d26e0ae738c0fec2147f setup: don't ship i18n directory The directory was never actually used at runtime and other programs don't ship it either. diff -r c08583734fc5 -r 4a3c388f8c69 setup.py --- 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('.')]