add missing parenthesis

This commit is contained in:
Frédéric Péters 2016-01-13 10:20:39 +01:00
parent 298c15b67f
commit 0f90062fc3
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ class Command(BaseCommand):
def get_invoice_hash(self, *args):
msg = ''.join(map(lambda s: str(s), args)
msg = ''.join(map(lambda s: str(s), args))
return sha256(msg).hexdigest()[:7]
def handle(self, *args, **options):