Skip to content

Commit

Permalink
Fixes get_base_packing_price.
Browse files Browse the repository at this point in the history
  • Loading branch information
diefenbach committed Dec 1, 2015
1 parent 570d714 commit 0342db3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lfs/plugins.py
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ def get_base_packing_price(self, with_properties=True, amount=1):
amount
The amount of products for which the price is calculated.
"""
return self.get_price(with_properties) * self._calc_packing_amount()
return self.get_price(with_properties, amount) * self._calc_packing_amount()

def get_base_packing_price_net(self, with_properties=True, amount=1):
"""
Expand Down

0 comments on commit 0342db3

Please sign in to comment.