fix silly bugs
This commit is contained in:
parent
406d74c258
commit
7bbc9b1455
|
@ -5,4 +5,4 @@ import scrython
|
|||
try:
|
||||
search = scrython.cards.Search(q="!Black Lotus")
|
||||
except scrython.ScryfallError as e:
|
||||
print(str(e.status) + ' ' + e.code + ': ' + e.details)
|
||||
print(str(e.error_details['status']) + ' ' + e.error_details['code'] + ': ' + e.error_details['details'])
|
||||
|
|
|
@ -35,7 +35,7 @@ class FoundationObject(object):
|
|||
loop.run_until_complete(main(loop))
|
||||
|
||||
if self.scryfallJson['object'] == 'error':
|
||||
raise ScryfallError(self.scryfallJson, message=self.scryfallJson['details'])
|
||||
raise ScryfallError(self.scryfallJson, self.scryfallJson['details'])
|
||||
|
||||
def _checkForKey(self, key):
|
||||
"""Checks for a key in the scryfallJson object.
|
||||
|
|
Loading…
Reference in New Issue