Skip to content

Commit

Permalink
Only catch the ImportError instead of everything
Browse files Browse the repository at this point in the history
  • Loading branch information
mattrobenolt committed Nov 18, 2014
1 parent 44cef78 commit 6b90b3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion raven/transport/requests.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
try:
import requests
has_requests = True
except:
except ImportError:
has_requests = False


Expand Down

0 comments on commit 6b90b3c

Please sign in to comment.