From: Peter Schneider-Kamp Date: Thu, 24 Aug 2000 21:47:34 +0000 (+0000) Subject: simple typo that makes regression test test_userstring fail X-Git-Tag: v2.0b1~264 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fa12e13ae7e5a95f83e4880f518f32f083bdd010;p=thirdparty%2FPython%2Fcpython.git simple typo that makes regression test test_userstring fail --- diff --git a/Lib/UserString.py b/Lib/UserString.py index 34f3216cfe06..ea3d5155eb94 100755 --- a/Lib/UserString.py +++ b/Lib/UserString.py @@ -55,7 +55,7 @@ class UserString: self.data += other.data elif isinstance(other, StringType) or isinstance(other, UnicodeType): self.data += other - else + else: self.data += str(other) return self def __mul__(self, n):