You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When attempting to run bootstrap.py the following error is encountered:
error in src/engine/SCons/Action.xml
Traceback (most recent call last):
File "bin/scons-proc.py", line 108, in <module>
saxparser.parse(StringIO(input))
TypeError: initial_value must be unicode or None, not str
scons: *** [build/doc/man/builders.man] Error 1
scons: building terminated because of errors.
This issue was however readily resolved by replacing the line saxparser.parse(StringIO(input))
with saxparser.parse(StringIO(unicode(input))).
The text was updated successfully, but these errors were encountered:
When attempting to run
bootstrap.py
the following error is encountered:This issue was however readily resolved by replacing the line
saxparser.parse(StringIO(input))
with
saxparser.parse(StringIO(unicode(input)))
.The text was updated successfully, but these errors were encountered: