Skip to content

Commit

Permalink
Merge pull request #90 from akretion/fix/geodis_email
Browse files Browse the repository at this point in the history
Typo on email
  • Loading branch information
hparfr authored Feb 1, 2018
2 parents 9edad71 + b10a245 commit 4d7faf8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ Roadmap / TODO:
- Write tests


# 0.3.1 2018-02-01
- Geodis fix typo in (e)mail

# 0.3.0 2018-02-01

### Features / Refactorings
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.0
0.3.1
4 changes: 2 additions & 2 deletions roulier/carriers/geodis/geodis_encoder_edi.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@ def encode_shipment(self, shipment, service, idx):
to_address['country']
],
]
if to_address['mail']:
lines.append(['COM', [to_address['mail'], 'EM']])
if to_address['email']:
lines.append(['COM', [to_address['email'], 'EM']])
if to_address['phone']:
lines.append(['COM', [to_address['phone'], 'TE']])
j = 0
Expand Down

0 comments on commit 4d7faf8

Please sign in to comment.