From fc258b95f519e5f371ccd0b9e9a17d13af93b146 Mon Sep 17 00:00:00 2001 From: Silvio Leite Date: Sat, 7 Dec 2019 14:19:37 -0300 Subject: [PATCH] fix(setup): fix install from github --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 06dccfb..13e258f 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ try: import pypandoc long_description = pypandoc.convert('README.md', 'rst') -except RuntimeError: +except ModuleNotFoundError: long_description = short_description # allow setup.py to be run from any path