Skip to content

Commit

Permalink
fix price column number
Browse files Browse the repository at this point in the history
  • Loading branch information
Bouni committed Jan 25, 2024
1 parent 802a567 commit 3280d55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion partselector.py
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@ def populate_part_list(self, parts, search_duration):
for p in parts:
item = [str(c) for c in p]
# Munge price to be more readable
pricecol = 7 # Must match order in library.py search function
pricecol = 8 # Must match order in library.py search function
price = []
try:
for t in item[pricecol].split(","):
Expand Down

0 comments on commit 3280d55

Please sign in to comment.