diff options
| author | Dylan Araps <dylan.araps@gmail.com> | 2017-07-28 16:06:17 +1000 |
|---|---|---|
| committer | Dylan Araps <dylan.araps@gmail.com> | 2017-07-28 16:06:17 +1000 |
| commit | 8e1841c8de3a0ab38bdf91baa498074a28665ba3 (patch) | |
| tree | c449f2f23a9373adc7a8d63732f30aa6511bc740 /setup.py | |
| parent | 82e15672ba5982db2f7269ba60dc8879dbf2295a (diff) | |
setup: except runtimeerror
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,7 +11,7 @@ except (ImportError, SyntaxError): try: import pypandoc LONG_DESC = pypandoc.convert("README.md", "rst") -except(IOError, ImportError): +except(IOError, ImportError, RuntimeError): LONG_DESC = open('README.md').read() |
