Skip to content

Commit

Permalink
[REF] removed spurious space
Browse files Browse the repository at this point in the history
  • Loading branch information
gurneyalex committed Mar 12, 2014
1 parent f37b029 commit 9903ac8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sale_dropshipping/product.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def is_direct_delivery_from_suppliers(product):
res[product.id] = is_direct_delivery_from_suppliers(product)
elif 'qty' in context:
# TODO deal with partial availability?
if product.virtual_available < context['qty']:
if product.virtual_available < context['qty']:
res[product.id] = is_direct_delivery_from_suppliers(product)
else: # Available in stock
res[product.id] = False
Expand Down

0 comments on commit 9903ac8

Please sign in to comment.