diff options
-rwxr-xr-x | Lib/UserString.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): |