Fix typo in dummy backend, and bump version to 0.0.8

This commit is contained in:
Benjamin Dauvergne 2012-02-20 09:54:06 +01:00
parent 59eb08bb15
commit f4afd4df4b
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ from common import URL, HTML
__all__ = [ 'Payment', 'URL', 'HTML', '__version__', 'SIPS', 'SYSTEMPAY',
'SPPLUS', 'DUMMY', 'get_backend' ]
__version__ = "0.0.7"
__version__ = "0.0.8"
SIPS = 'sips'
SYSTEMPAY = 'systempayv2'

View File

@ -94,7 +94,7 @@ class Payment(PaymentCommon):
content = 'signature ok'
else:
content = None
signed = signed and self.consider_all_response_signed
signed = signed or self.consider_all_response_signed
result = 'ok' in form
signed_result = result if signed else None