svnwrap: work around getting a bytearray instead of a string in SimpleStringIO

This commit is contained in:
Augie Fackler 2017-08-30 23:58:15 -04:00
parent af0c0307be
commit 5fb2fea2a4

View File

@ -164,7 +164,7 @@ class SimpleStringIO(object):
self._blocks.append(s)
def getvalue(self):
return ''.join(self._blocks)
return ''.join(str(s) for s in self._blocks)
def close(self):
if self._closing: