Kaydet (Commit) fa12e13a authored tarafından Peter Schneider-Kamp's avatar Peter Schneider-Kamp

simple typo that makes regression test test_userstring fail

üst e1519a1b
...@@ -55,7 +55,7 @@ class UserString: ...@@ -55,7 +55,7 @@ class UserString:
self.data += other.data self.data += other.data
elif isinstance(other, StringType) or isinstance(other, UnicodeType): elif isinstance(other, StringType) or isinstance(other, UnicodeType):
self.data += other self.data += other
else else:
self.data += str(other) self.data += str(other)
return self return self
def __mul__(self, n): def __mul__(self, n):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment