Skip to content

Commit

Permalink
New CSV import strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Jan 10, 2019
1 parent 56ac310 commit e68d793
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/budy/models/order.py
Expand Up @@ -312,7 +312,13 @@ def callback(line):
base_url % tracking_number
)

cls._csv_import(file, callback, delimiter = "+", encoding = "Cp1252")
cls._csv_import(
file,
callback,
header = False,
delimiter = "+",
encoding = "Cp1252"
)

@classmethod
@appier.operation(
Expand Down

0 comments on commit e68d793

Please sign in to comment.