[FIX] account_banking_nl_clieop: typo in last commit caused endless loop

This commit is contained in:
Pieter J. Kersten
2011-03-08 17:00:59 +01:00
parent 3254468dc0
commit 6a6740cf8f
6 changed files with 7 additions and 7 deletions

View File

@@ -25,7 +25,7 @@
##############################################################################
{
'name': 'Account Banking',
'version': '0.1.51',
'version': '0.1.52',
'license': 'GPL-3',
'author': 'EduSense BV',
'website': 'http://www.edusense.nl',

View File

@@ -26,7 +26,7 @@
##############################################################################
{
'name': 'Account Banking PATU module',
'version': '0.51',
'version': '0.52',
'license': 'GPL-3',
'author': 'Sami Haahtinen',
'website': 'http://ressukka.net',

View File

@@ -25,7 +25,7 @@
##############################################################################
{
'name': 'Account Banking NL ClieOp',
'version': '0.51',
'version': '0.52',
'license': 'GPL-3',
'author': 'EduSense BV',
'website': 'http://www.edusense.nl',

View File

@@ -25,7 +25,7 @@
##############################################################################
{
'name': 'Account Banking - Girotel',
'version': '0.51',
'version': '0.52',
'license': 'GPL-3',
'author': 'EduSense BV',
'website': 'http://www.edusense.nl',

View File

@@ -71,7 +71,7 @@ class transaction_message(object):
'''
Convert values for string content to SWIFT-allowable content
'''
if attr != 'attrnames' and attr in self.strattrs:
if attr != 'strattrs' and attr in self.strattrs:
value = to_swift(value)
super(transaction_message, self).__setattribute__(attr, value)
@@ -80,7 +80,7 @@ class transaction_message(object):
Convert values from string content to SWIFT-allowable content
'''
retval = super(transaction_message, self).__getattribute__(attr)
return attr != 'attrnames' and attr in self.strattrs and to_swift(retval) or retval
return attr != 'strattrs' and attr in self.strattrs and to_swift(retval) or retval
def genid(self):
'''

View File

@@ -25,7 +25,7 @@
##############################################################################
{
'name': 'Account Banking',
'version': '0.51',
'version': '0.52',
'license': 'GPL-3',
'author': 'EduSense BV',
'website': 'http://www.edusense.nl',