Skip to content

Commit 2afc0e2

Browse files
author
=
committed
fix lot printing
1 parent 45f1e0d commit 2afc0e2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

auctions/views.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5146,7 +5146,7 @@ def get_queryset(self):
51465146

51475147
def dispatch(self, request, *args, **kwargs):
51485148
self.lot = get_object_or_404(Lot, pk=kwargs.pop("pk"), is_deleted=False)
5149-
self.filename = "label_" + self.lot.lot_number_display
5149+
self.filename = f"label_{self.lot.lot_number_display}"
51505150
if self.lot.auctiontos_seller:
51515151
self.auction = self.lot.auctiontos_seller.auction
51525152
auth = False

0 commit comments

Comments
 (0)