aboutsummaryrefslogtreecommitdiff
path: root/ponysay.py
diff options
context:
space:
mode:
Diffstat (limited to 'ponysay.py')
-rwxr-xr-xponysay.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/ponysay.py b/ponysay.py
index aad4b83..06723c8 100755
--- a/ponysay.py
+++ b/ponysay.py
@@ -887,6 +887,7 @@ class Ponysay():
## Select a random pony–quote-pair, load it and print it
if not len(pairs) == 0:
pair = pairs[random.randrange(0, len(pairs))]
+ printinfo('quote file: ' + pair[1])
with open(pair[1], 'rb') as qfile:
args.message = qfile.read().decode('utf8', 'replace').strip()
args.opts['-f'] = [pair[0]]