Refs #24324 -- Fixed Python 2 test failures when path to Django source contains non-ASCII characters.

This commit is contained in:
Tim Graham 2015-02-14 19:47:07 -05:00
parent fa66ea7532
commit 307c0f299a
9 changed files with 31 additions and 23 deletions

View file

@ -35,7 +35,7 @@ SOME_INSTALLED_APPS_NAMES = [
'django.contrib.auth',
] + SOME_INSTALLED_APPS[2:]
HERE = os.path.dirname(__file__)
HERE = os.path.dirname(upath(__file__))
class AppsTests(TestCase):