Skip to content

Commit

Permalink
Merge pull request #453 from prokopst/patch-1
Browse files Browse the repository at this point in the history
Handling of FileNotFoundError in setup.py for build_ext.run
  • Loading branch information
asvetlov committed Aug 2, 2015
2 parents 6f04147 + 9f3483b commit c4277b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class ve_build_ext(build_ext):
def run(self):
try:
build_ext.run(self)
except DistutilsPlatformError:
except (DistutilsPlatformError, FileNotFoundError):
raise BuildFailed()

def build_extension(self, ext):
Expand Down

0 comments on commit c4277b0

Please sign in to comment.