From 62da0fa82612f078041ab65e2043a38a147d2ce7 Mon Sep 17 00:00:00 2001 From: Stephane Wirtel Date: Tue, 7 Feb 2012 13:14:11 +0100 Subject: [PATCH] [FIX] Insert the data files of Babel bzr revid: stw@openerp.com-20120207121411-2jkg7eq3pb91pqq6 --- setup.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/setup.py b/setup.py index be9e90bb08d..6e1adadde82 100755 --- a/setup.py +++ b/setup.py @@ -40,6 +40,11 @@ def data(): r = d.items() if os.name == 'nt': r.append(("Microsoft.VC90.CRT", glob.glob('C:\Microsoft.VC90.CRT\*.*'))) + + import babel + r.append(("localedata", + glob.glob(os.path.join(os.path.dirname(babel.__file__), "localedata" , '*')))) + return r def gen_manifest():