simple typo that makes regression test test_userstring fail
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 @@
             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):