diff --git a/README.md b/README.md index 144514b..a4f5a54 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/funmotd/__init__.py b/funmotd/__init__.py index 744b0a1..7351b22 100644 --- a/funmotd/__init__.py +++ b/funmotd/__init__.py @@ -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"])) diff --git a/setup.py b/setup.py index 88c16cd..32bee9e 100644 --- a/setup.py +++ b/setup.py @@ -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)