Fixed wrong HMAC signature generation

This commit is contained in:
Julien Constant 2023-01-05 23:46:43 +01:00
parent 7079761ffe
commit b4d8d1a186
No known key found for this signature in database
GPG Key ID: 816E7C070117E5B7

View File

@ -181,7 +181,7 @@ class BillingInfo(models.Model):
if self.address_2:
data["Address"]["Address2"] = self.address_2
xml = dict2xml(data, wrap="Billing", newlines=False)
return '<?xml version="1.0" encoding="UTF-8" ?>\n' + xml
return '<?xml version="1.0" encoding="UTF-8" ?>' + xml
def __str__(self):
return f"{self.first_name} {self.last_name}"