[FIX] Insert the data files of Babel

bzr revid: stw@openerp.com-20120207121411-2jkg7eq3pb91pqq6
This commit is contained in:
Stephane Wirtel 2012-02-07 13:14:11 +01:00
parent e966b19fa4
commit 62da0fa826
1 changed files with 5 additions and 0 deletions

View File

@ -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():