remove oooold typo

This commit is contained in:
Thomas Steen Rasmussen 2021-08-01 18:12:58 +02:00
parent 792fc2bfc0
commit 7d4ad533f7
1 changed files with 2 additions and 2 deletions

View File

@ -619,13 +619,13 @@ class CreditNote(CreatedUpdatedModel):
def __str__(self):
if self.user:
return "creditnoote#%s - %s DKK (customer: user %s)" % (
return "creditnote#%s - %s DKK (customer: user %s)" % (
self.id,
self.amount,
self.user.email,
)
else:
return "creditnoote#%s - %s DKK (customer: %s)" % (
return "creditnote#%s - %s DKK (customer: %s)" % (
self.id,
self.amount,
self.customer,