diff options
| author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2015-09-28 22:59:33 +0200 | 
|---|---|---|
| committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2015-09-28 22:59:33 +0200 | 
| commit | 3b512d551f7a67351b2566cbbdfaadaddb298362 (patch) | |
| tree | 985ddc55419fbf126a0cc9818e0fcea81c5dc583 | |
| parent | 9814c2977824543acb3ad39da2f94afc2feaf982 (diff) | |
Fix known number answers
| -rwxr-xr-x | callers/read_numbers_aloud.py | 5 | 
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."""  | 
