Commit 4dd2c42a by David Baumgold

Merge pull request #2451 from edx/db/i18n-dummy-path-py

Use path.py instead of os.path
parents 7e1e8fdc b1be29ff
...@@ -24,8 +24,8 @@ where $DUMMY_LOCALE is the dummy_locale value set in the i18n config ...@@ -24,8 +24,8 @@ where $DUMMY_LOCALE is the dummy_locale value set in the i18n config
""" """
import sys import sys
import os
import polib import polib
from path import path
from i18n.config import CONFIGURATION from i18n.config import CONFIGURATION
from i18n.execute import create_dir_if_necessary from i18n.execute import create_dir_if_necessary
...@@ -164,7 +164,7 @@ def make_dummy(file, locale): ...@@ -164,7 +164,7 @@ def make_dummy(file, locale):
Takes a source po file, reads it, and writes out a new po file Takes a source po file, reads it, and writes out a new po file
in :param locale: containing a dummy translation. in :param locale: containing a dummy translation.
""" """
if not os.path.exists(file): if not path(file).exists():
raise IOError('File does not exist: %s' % file) raise IOError('File does not exist: %s' % file)
pofile = polib.pofile(file) pofile = polib.pofile(file)
converter = Dummy() converter = Dummy()
...@@ -182,10 +182,9 @@ def make_dummy(file, locale): ...@@ -182,10 +182,9 @@ def make_dummy(file, locale):
def new_filename(original_filename, new_locale): def new_filename(original_filename, new_locale):
"""Returns a filename derived from original_filename, using new_locale as the locale""" """Returns a filename derived from original_filename, using new_locale as the locale"""
orig_dir = os.path.dirname(original_filename) f = path(original_filename)
msgs_dir = os.path.basename(orig_dir) new_file = f.parent.parent.parent / new_locale / f.parent.name / f.name
orig_file = os.path.basename(original_filename) return new_file.abspath()
return os.path.abspath(os.path.join(orig_dir, '../..', new_locale, msgs_dir, orig_file))
def main(): def main():
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment