We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45f1e0d commit 2afc0e2Copy full SHA for 2afc0e2
auctions/views.py
@@ -5146,7 +5146,7 @@ def get_queryset(self):
5146
5147
def dispatch(self, request, *args, **kwargs):
5148
self.lot = get_object_or_404(Lot, pk=kwargs.pop("pk"), is_deleted=False)
5149
- self.filename = "label_" + self.lot.lot_number_display
+ self.filename = f"label_{self.lot.lot_number_display}"
5150
if self.lot.auctiontos_seller:
5151
self.auction = self.lot.auctiontos_seller.auction
5152
auth = False
0 commit comments