summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2015-09-28 22:59:33 +0200
committerElena ``of Valhalla'' Grandi <valhalla@trueelena.org>2015-09-28 22:59:33 +0200
commit3b512d551f7a67351b2566cbbdfaadaddb298362 (patch)
tree985ddc55419fbf126a0cc9818e0fcea81c5dc583
parent9814c2977824543acb3ad39da2f94afc2feaf982 (diff)
Fix known number answers
-rwxr-xr-xcallers/read_numbers_aloud.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/callers/read_numbers_aloud.py b/callers/read_numbers_aloud.py
index 64d803c..78de952 100755
--- a/callers/read_numbers_aloud.py
+++ b/callers/read_numbers_aloud.py
@@ -22,12 +22,15 @@ class Speaker(object):
except TypeError:
self._output("Sto chiamando il numero %s" % number)
- def call_12345(self):
+ def call_1234(self):
self._output(u"Questa รจ la combinazione della mia valigia.")
def call_1234567890(self):
self._output(u"Stiamo testando tutti i numeri, vero?")
+ def call_666(self):
+ self._output(u"Risponde la segreteria telefonica di Satana.")
+
class Reader(object):
"""Read digits from stdin and turn them into phone numbers."""