Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorReinier Heeres <reinier@heeres.eu>2009-07-20 16:46:32 (GMT)
committer Reinier Heeres <reinier@heeres.eu>2009-07-20 16:46:32 (GMT)
commit1d7ebb7cad4e4de2f25e64d09da8b33ca1a8d331 (patch)
treea02bc5764ee19bcccd032cb2ba3674120c46c319
parent7f2c297c6c433ccadd330181f33aa76b352136f1 (diff)
Fix add/sub help messages
-rw-r--r--functions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.py b/functions.py
index ac45610..ddc1088 100644
--- a/functions.py
+++ b/functions.py
@@ -381,7 +381,7 @@ def sub(x, y):
x = _d(x)
y = _d(y)
return x - y
-add.__doc__ = _('sub(x, y), return x - y')
+sub.__doc__ = _('sub(x, y), return x - y')
def tan(x):
return math.tan(_scale_angle(x))