Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
bertini36 committed Mar 10, 2021
1 parent 01585ac commit 9fc1850
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion datatrans/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '1.0.10'
__version__ = '1.0.11'
__copyright__ = 'Copyright (c) 2017, skioo SA'
__licence__ = 'MIT'
__URL__ = 'https://github.com/skioo/django-datatrans-gateway'
2 changes: 1 addition & 1 deletion datatrans/gateway/payment_with_alias.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ def parse_pay_with_alias_response_xml(xml: bytes) -> Payment:

transaction_id = response.find('uppTransactionId').text
masked_card_number = response.find('maskedCC').text
return_customer_country = text_or_else(response.find('returnCustomerCountry')),
return_customer_country = text_or_else(response.find('returnCustomerCountry'))

response_code = response.find('responseCode').text
response_message = response.find('responseMessage').text
Expand Down

0 comments on commit 9fc1850

Please sign in to comment.