Skip to content

Commit

Permalink
Merge pull request #3 from bukzor/no-pwd
Browse files Browse the repository at this point in the history
handle "pwd does not exist"
  • Loading branch information
Buck Evan committed May 11, 2016
2 parents 241b220 + 21a4dc2 commit 3ee41ff
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@
PTH = '''\
try:
import coverage
except ImportError:
# coverage throws OSError when $PWD does not exist
except (ImportError, OSError):
pass
else:
coverage.process_startup()
Expand Down Expand Up @@ -123,7 +124,7 @@ def main():
"""the entry point"""
setup(
name=str('coverage_enable_subprocess'),
version='0',
version='1.0',
url="https://github.com/bukzor/python-coverage-enable-subprocess",
license="MIT",
author="Buck Evan",
Expand Down

0 comments on commit 3ee41ff

Please sign in to comment.