]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
simple typo that makes regression test test_userstring fail
authorPeter Schneider-Kamp <nowonder@nowonder.de>
Thu, 24 Aug 2000 21:47:34 +0000 (21:47 +0000)
committerPeter Schneider-Kamp <nowonder@nowonder.de>
Thu, 24 Aug 2000 21:47:34 +0000 (21:47 +0000)
Lib/UserString.py

index 34f3216cfe0667ef7acac318ee7b071971d4ce0b..ea3d5155eb943058b868bbe15a2f8e236de35fef 100755 (executable)
@@ -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):