aboutsummaryrefslogtreecommitdiff
path: root/ponysay.py
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2012-10-23 22:09:59 +0200
committerMattias Andrée <maandree@operamail.com>2012-10-23 22:09:59 +0200
commite726084422b59e5167c5cb0fdb5909c753e31e10 (patch)
treef59e3d8698430f6a50defc3595665e8e8f697f04 /ponysay.py
parent002f42fb0f8da093c9f1cd4b531c7ad3f5970ed3 (diff)
downloadponysay-e726084422b59e5167c5cb0fdb5909c753e31e10.tar.gz
ponysay-e726084422b59e5167c5cb0fdb5909c753e31e10.tar.bz2
ponysay-e726084422b59e5167c5cb0fdb5909c753e31e10.zip
autocorrection distance limit is set to 5, rather than unlimited
Diffstat (limited to 'ponysay.py')
-rwxr-xr-xponysay.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/ponysay.py b/ponysay.py
index 44ff009..502b85f 100755
--- a/ponysay.py
+++ b/ponysay.py
@@ -319,7 +319,7 @@ class Ponysay():
if not alt:
autocorrect = SpelloCorrecter(ponydirs, '.pony')
(alternatives, dist) = autocorrect.correct(pony)
- if len(alternatives) > 0:
+ if (len(alternatives) > 0) and (dist <= 5): # TODO the limit `dist` should be configureable
return self.__getponypath(alternatives, True)
sys.stderr.write('I have never heard of anypony named %s\n' % (pony));
exit(1)
@@ -672,8 +672,8 @@ class Ponysay():
if balloon not in balloons:
if not alt:
autocorrect = SpelloCorrecter(balloondirs, '.think' if isthink else '.say')
- alternatives = autocorrect.correct(balloon)[0]
- if len(alternatives) > 0:
+ (alternatives, dist) = autocorrect.correct(balloon)
+ if (len(alternatives) > 0) and (dist <= 5): # TODO the limit `dist` should be configureable
return self.__getponypath(alternatives, True)
sys.stderr.write('That balloon style %s does not exist\n' % (balloon));
exit(1)