From 9c935c9cc70ba992763a37588e3565ab1602ce58 Mon Sep 17 00:00:00 2001 From: Al Date: Mon, 1 Jun 2015 17:13:06 -0400 Subject: [PATCH] [fix] Base data dir path --- scripts/geodata/i18n/unicode_paths.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/geodata/i18n/unicode_paths.py b/scripts/geodata/i18n/unicode_paths.py index c54627ff..fac63157 100644 --- a/scripts/geodata/i18n/unicode_paths.py +++ b/scripts/geodata/i18n/unicode_paths.py @@ -4,7 +4,8 @@ import sys this_dir = os.path.realpath(os.path.dirname(__file__)) sys.path.append(os.path.realpath(os.path.join(os.pardir, os.pardir))) -UNICODE_DATA_DIR = os.path.join(this_dir, os.pardir, os.pardir, os.pardir, - 'data', 'unicode') +DATA_DIR = os.path.join(this_dir, os.pardir, os.pardir, os.pardir, 'data') + +UNICODE_DATA_DIR = os.path.join(DATA_DIR, 'unicode') CLDR_DIR = os.path.join(UNICODE_DATA_DIR, 'cldr')