Skip to content

Commit

Permalink
Merge pull request #96 from PritishC/fix-product-import
Browse files Browse the repository at this point in the history
API calls using Magento product ID should delegate to calls using data
  • Loading branch information
tarunbhardwaj committed May 1, 2015
2 parents d0d340b + b76c8e9 commit dcc1fcb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wizard.py
Original file line number Diff line number Diff line change
Expand Up @@ -745,8 +745,8 @@ def import_products(self, channel):
products = []
for magento_product in magento_products:
products.append(
Product.find_or_create_using_magento_data(
magento_product
Product.find_or_create_using_magento_id(
magento_product['product_id']
)
)

Expand Down

0 comments on commit dcc1fcb

Please sign in to comment.