aboutsummaryrefslogtreecommitdiff
path: root/ponysay.py
diff options
context:
space:
mode:
authorjaseg <s@jaseg.de>2013-03-31 22:55:50 +0200
committerjaseg <s@jaseg.de>2013-03-31 22:55:50 +0200
commit2ce4b2ed726b3be47094431f6d55c05d668529cc (patch)
tree994e268d3c3fa8e40ecc9814c7040039e6698180 /ponysay.py
parent35652e6d98d25facc8675667996924d0ad5adbe1 (diff)
downloadponysay-2ce4b2ed726b3be47094431f6d55c05d668529cc.tar.gz
ponysay-2ce4b2ed726b3be47094431f6d55c05d668529cc.tar.bz2
ponysay-2ce4b2ed726b3be47094431f6d55c05d668529cc.zip
Repo orga fixes, README updated.
Diffstat (limited to 'ponysay.py')
-rwxr-xr-xponysay.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ponysay.py b/ponysay.py
index cfbd846..3b5c39d 100755
--- a/ponysay.py
+++ b/ponysay.py
@@ -29,7 +29,7 @@ except:
pass
def list_ponies(markQuotes=False):
- quotes = lambda n: ' (q)' if markQuotes and exists(ponypath+'/'+n+'.quotes') else ''
+ quotes = lambda n: ' (quotes)' if markQuotes and exists(ponypath+'/'+n+'.quotes') else ''
return [ f[:-5]+quotes(f[:-5]) for f in os.listdir(ponypath) if not f.endswith('quotes') ]
def list_ponies_with_quotes(markQuotes=False):