From 6168612ddbe15e600c431e055331ec2b2f81e7e0 Mon Sep 17 00:00:00 2001 From: Prathamesh Musale Date: Thu, 3 Oct 2024 18:38:22 +0530 Subject: [PATCH] Handle lint errors --- stack_orchestrator/deploy/webapp/request_webapp_deployment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stack_orchestrator/deploy/webapp/request_webapp_deployment.py b/stack_orchestrator/deploy/webapp/request_webapp_deployment.py index 2da2bbaf..39893a8e 100644 --- a/stack_orchestrator/deploy/webapp/request_webapp_deployment.py +++ b/stack_orchestrator/deploy/webapp/request_webapp_deployment.py @@ -114,7 +114,7 @@ def command( # noqa: C901 # Check auction owner if auction.ownerAddress != laconic.whoami().address: - fatal(f"Auction owner mismatch") + fatal(f"Auction {auction_id} owner mismatch") # Check auction kind if auction.kind != AUCTION_KIND_PROVIDER: