Skip to content

Commit bcb968a

Browse files
release: fallback for uninstalled pandoc
1 parent ec8c622 commit bcb968a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
try:
1111
import pypandoc
1212
long_description = pypandoc.convert('README.md', 'rst').replace("\r", "")
13-
except ImportError:
13+
except (ImportError, OSError): # pypandoc or pandoc is not installed
1414
long_description = ''
1515

1616
setup(

transloadit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.1.5'
1+
__version__ = '0.1.6'

0 commit comments

Comments
 (0)