Skip to content

Commit

Permalink
Merge pull request #58 from billmurrin/fix-spelling-of-class
Browse files Browse the repository at this point in the history
fix spelling of exception
  • Loading branch information
saadkadhi authored Jan 11, 2018
2 parents 83381d0 + 98d5060 commit cfe9542
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion thehive4py/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ def get_case_observables(self, case_id, **attributes):
try:
return requests.post(req, params=params, json=data, proxies=self.proxies, auth=self.auth, verify=self.cert)
except requests.exceptions.RequestException as e:
raise CaseObserableException("Case observables search error: {}".format(e))
raise CaseObservableException("Case observables search error: {}".format(e))

def get_case_tasks(self, case_id, **attributes):
req = self.url + "/api/case/task/_search"
Expand Down

0 comments on commit cfe9542

Please sign in to comment.