mirror of
https://github.com/erkin/ponysay
synced 2024-11-16 00:17:59 +00:00
Drop newline at end of file of ponyquotes
This commit is contained in:
parent
88baa565a0
commit
3bb5a68d7f
1 changed files with 1 additions and 1 deletions
|
@ -353,7 +353,7 @@ class ponysay():
|
|||
qfile = None
|
||||
try:
|
||||
qfile = open(pair[1], 'r')
|
||||
args.message = '\n'.join(qfile.readlines())
|
||||
args.message = '\n'.join(qfile.readlines()).strip()
|
||||
finally:
|
||||
if qfile is not None:
|
||||
qfile.close()
|
||||
|
|
Loading…
Reference in a new issue