Merge pull request #5225 from prometheanfire/devel

tests depend on the default encoding being utf8
pull/4420/head
jctanner 2013-12-17 12:46:05 -08:00
commit acf73bc336
1 changed files with 4 additions and 0 deletions

View File

@ -10,6 +10,10 @@ from nose.plugins.skip import SkipTest
import ansible.utils import ansible.utils
import ansible.utils.template as template2 import ansible.utils.template as template2
import sys
reload(sys)
sys.setdefaultencoding("utf8")
class TestUtils(unittest.TestCase): class TestUtils(unittest.TestCase):
##################################### #####################################