Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--talogo.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/talogo.py b/talogo.py
index 09f1e0a..318bb7e 100644
--- a/talogo.py
+++ b/talogo.py
@@ -152,11 +152,11 @@ def taplus(x, y):
if numtype(x):
xx = str(round_int(x))
else:
- xx = x
+ xx = str(x)
if numtype(y):
yy = str(round_int(y))
else:
- yy = y
+ yy = str(y)
return(xx+yy)
def taminus(x, y):