BishopFox / GitGot

Semi-automated, feedback-driven tool to rapidly search through troves of public data on GitHub for sensitive secrets.
GNU Lesser General Public License v3.0
1.43k stars 204 forks source link

continue on error instead of quitting #23

Closed leesoh-bf closed 2 years ago

leesoh-bf commented 3 years ago

This PR fixes two terminating errors by silently continuing execution. The first resolves an error encountered on L78 when GitHub returns something other than the expected results, for example an error message received =when requesting a large blob.

The second change deals with an error received when trying to concatenate an error with a string. Wrapping it in str fixes this.