Skip to content

Commit

Permalink
Add OSError exception handling
Browse files Browse the repository at this point in the history
  • Loading branch information
gehaxelt committed Jun 16, 2020
1 parent 3cf32c6 commit 762e412
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Finder/gitfinder.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ def findgitrepo(output_file, domains):
return
except URLError:
return
except OSError:
return
except ConnectionResetError:
return
except (KeyboardInterrupt, SystemExit):
Expand Down

0 comments on commit 762e412

Please sign in to comment.