diff options
| author | Tim Graham <timograham@gmail.com> | 2015-02-14 19:47:07 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-02-17 19:03:03 -0500 |
| commit | 307c0f299a6c26f5231d3516df5b4edc54b36553 (patch) | |
| tree | 3c80c8cb475846c0dff45188db1db111249df97f /tests/template_tests/syntax_tests | |
| parent | fa66ea75326e669cd3d51fb926a4364b8ba08959 (diff) | |
Refs #24324 -- Fixed Python 2 test failures when path to Django source contains non-ASCII characters.
Diffstat (limited to 'tests/template_tests/syntax_tests')
| -rw-r--r-- | tests/template_tests/syntax_tests/test_ssi.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/template_tests/syntax_tests/test_ssi.py b/tests/template_tests/syntax_tests/test_ssi.py index 591e540edb..512bc1cbf4 100644 --- a/tests/template_tests/syntax_tests/test_ssi.py +++ b/tests/template_tests/syntax_tests/test_ssi.py @@ -1,3 +1,5 @@ +from __future__ import unicode_literals + import os from django.test import SimpleTestCase, ignore_warnings |
