Skip to content

Commit

Permalink
Fix catching exceptions when looking up an Order ID
Browse files Browse the repository at this point in the history
  • Loading branch information
dwrss committed Sep 29, 2024
1 parent 7dbea44 commit 934a8aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion botto/clients/app_store_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ async def lookup_order_id(
for t in response.signedTransactions
]
return decoded_transactions
except APIException | VerificationException as e:
except (APIException, VerificationException) as e:
raise OrderLookupError(
f"Error looking up order ID {order_id} for app {app.bundle_id}"
) from e
Expand Down

0 comments on commit 934a8aa

Please sign in to comment.