Skip to content

Commit

Permalink
Merge pull request #22 from ypid/fixed-unicode-in-defaults
Browse files Browse the repository at this point in the history
Fixed Unicode support for defaults/main.yml.
  • Loading branch information
nickjj committed Sep 9, 2015
2 parents 954b67f + 092afdb commit 5fc6442
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ansigenome/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,13 @@
import os
import re
import subprocess
import sys
import urllib2
import yaml

import sys
reload(sys)
sys.setdefaultencoding('utf-8')

from jinja2 import DictLoader
from jinja2.environment import Environment

Expand Down

0 comments on commit 5fc6442

Please sign in to comment.