diff options
author | Mattias Andrée <maandree@operamail.com> | 2012-08-19 19:49:06 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2012-08-19 19:49:06 +0200 |
commit | ab6f498c9f60dd5d914134a387144beabf6ce48c (patch) | |
tree | 57ba9db6d5ee18e80564b5312abc541a6f0d510e | |
parent | 24eb3cbcf68e1ed034432d107aa6519386a99307 (diff) | |
download | ponysay-ab6f498c9f60dd5d914134a387144beabf6ce48c.tar.gz ponysay-ab6f498c9f60dd5d914134a387144beabf6ce48c.tar.bz2 ponysay-ab6f498c9f60dd5d914134a387144beabf6ce48c.zip |
better (yes this is weird)
-rwxr-xr-x | ponysay.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -366,7 +366,7 @@ class Ponysay(): ''' def print_pony(self, args): if args.message == None: - msg = sys.stdin.read().strip() + msg = ''.join(sys.stdin.readlines()).strip() else: msg = args.message |