Skip to content

Commit

Permalink
release: fallback for uninstalled pandoc
Browse files Browse the repository at this point in the history
  • Loading branch information
ifedapoolarewaju committed Nov 17, 2017
1 parent ec8c622 commit bcb968a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst').replace("\r", "")
except ImportError:
except (ImportError, OSError): # pypandoc or pandoc is not installed
long_description = ''

setup(
Expand Down
2 changes: 1 addition & 1 deletion transloadit/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.1.5'
__version__ = '0.1.6'

0 comments on commit bcb968a

Please sign in to comment.