[r21276]Handle junk at the end of revision strings

svn: r21417
This commit is contained in:
John Ralls 2013-02-24 01:48:16 +00:00
parent 8222d4c04c
commit bfa28faf55

View File

@ -27,7 +27,7 @@ if sys.version_info[0] < 3:
cuni = unicode
else:
def to_utf8(s):
return s.decode("utf-8")
return s.decode("utf-8", errors = 'replace')
cuni = to_utf8
def get_svn_revision(path=""):