From fa12e13ae7e5a95f83e4880f518f32f083bdd010 Mon Sep 17 00:00:00 2001 From: Peter Schneider-Kamp Date: Thu, 24 Aug 2000 21:47:34 +0000 Subject: simple typo that makes regression test test_userstring fail --- Lib/UserString.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/UserString.py b/Lib/UserString.py index 34f3216..ea3d515 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): -- cgit v0.12