Skip to content

Commit

Permalink
[FIX] typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Veerendra committed Oct 28, 2021
1 parent 0430b95 commit 74b0c62
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
![PyPI - License](https://img.shields.io/pypi/l/funmotd)
![GitHub](https://img.shields.io/github/license/veerendra2/funmotd.svg)
![GitHub stars](https://img.shields.io/github/stars/veerendra2/funmotd.svg)
![PyPI - Status](https://img.shields.io/pypi/status/funmotd.svg)
![PyPI](https://img.shields.io/pypi/v/funmotd.svg)
![PyPI](https://img.shields.io/pypi/v/funmotd)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/funmotd.svg)
![PyPI - Downloads](https://img.shields.io/pypi/dm/funmotd)
[![Release](https://github.com/veerendra2/funmotd/actions/workflows/releases.yml/badge.svg)](https://github.com/veerendra2/funmotd/actions/workflows/releases.yml)
# Funny motd (funmotd)
A cool tool to display random quotes from Movies and TV Shows as [`motd`](https://en.wikipedia.org/wiki/Motd_(Unix)) on Terminal when you open.

Expand Down
2 changes: 1 addition & 1 deletion funmotd/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def show_motd():
quote = random.choice(all_quotes[name][0] + all_quotes[name][1])
else:
quote = random.choice(all_quotes[name][1])
print("*** Quote of the Day ***n")
print("*** Quote of the Day ***")
print(textwrap.fill('"'+quote["quote"]+'"', 90))
print(" ~{} ({})\n".format(quote["character"], quote["name"]))

Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,5 @@ def run(self):
classifiers=[
"Programming Language :: Python :: 3.4",
"License :: OSI Approved :: Apache Software License",
"Development Status :: 4 - Beta"
],
zip_safe=False)

0 comments on commit 74b0c62

Please sign in to comment.