Fix utf-8 enforcing hack.

The function getdefaultlocale takes one optional argument,
so the replace should behave the same.
This commit is contained in:
Daniel Ehlers 2013-11-18 21:35:40 +01:00
parent e58d0baec3
commit 9a85fd0c97

View file

@ -9,7 +9,7 @@ from d3mapbuilder import D3MapBuilder
# Force encoding to UTF-8 # Force encoding to UTF-8
import locale # Ensures that subsequent open()s import locale # Ensures that subsequent open()s
locale.getpreferredencoding = lambda: 'UTF-8' # are UTF-8 encoded. locale.getpreferredencoding = lambda _=None: 'UTF-8' # are UTF-8 encoded.
import sys import sys
#sys.stdin = open('/dev/stdin', 'r') #sys.stdin = open('/dev/stdin', 'r')