Xml.dom.minidom in gateway script

I’m running ignition 7.7.4

When I try to run:

from xml.dom.minidom import parseString

In a time triggerd gateway script I get this error.

Traceback (most recent call last):
INFO | jvm 2 | 2015/04/28 21:28:22 | File “<TimerScript:Danfoss_XML/danfoss1min @6,000ms >”, line 1, in
INFO | jvm 2 | 2015/04/28 21:28:22 | File “user-lib\pylib\xml\dom_init_.py”, line 226, in
INFO | jvm 2 | 2015/04/28 21:28:22 | import MessageSource
INFO | jvm 2 | 2015/04/28 21:28:22 | File “user-lib\pylib\xml\dom\MessageSource.py”, line 21, in
INFO | jvm 2 | 2015/04/28 21:28:22 | _ = get_translator(“dom”)
INFO | jvm 2 | 2015/04/28 21:28:22 | File “user-lib\pylib\xml\FtCore.py”, line 54, in get_translator
INFO | jvm 2 | 2015/04/28 21:28:22 | f = gettext.translation(‘4Suite’, locale_dir).gettext
INFO | jvm 2 | 2015/04/28 21:28:22 | File “user-lib\pylib\xml\FtCore.py”, line 54, in get_translator
INFO | jvm 2 | 2015/04/28 21:28:22 | f = gettext.translation(‘4Suite’, locale_dir).gettext
INFO | jvm 2 | 2015/04/28 21:28:22 | File “user-lib\pylib\gettext.py”, line 466, in translation
INFO | jvm 2 | 2015/04/28 21:28:22 | mofiles = find(domain, localedir, languages, all=1)
INFO | jvm 2 | 2015/04/28 21:28:22 | File “user-lib\pylib\gettext.py”, line 438, in find
INFO | jvm 2 | 2015/04/28 21:28:22 | for nelang in expand_lang(lang):
INFO | jvm 2 | 2015/04/28 21:28:22 | File “user-lib\pylib\gettext.py”, line 133, in expand_lang
INFO | jvm 2 | 2015/04/28 21:28:22 | locale = normalize(locale)
INFO | jvm 2 | 2015/04/28 21:28:22 | File “user-lib\pylib\locale.py”, line 329, in normalize
INFO | jvm 2 | 2015/04/28 21:28:22 | norm_encoding = encodings.normalize_encoding(encoding)
INFO | jvm 2 | 2015/04/28 21:28:22 | File "user-lib\pylib\encodings_init
.py", line 68, in normalize_encoding
INFO | jvm 2 | 2015/04/28 21:28:22 | return '
’.join(encoding.translate(_norm_encoding_map).split())
INFO | jvm 2 | 2015/04/28 21:28:22 | TypeError: translate() only works for 8-bit character strings

It seems to work in 7.7.0, the only thing that differs in the setup is that the one which is failing is running in redundant mode.

Any ideas?