Roundup Tracker - Issues

Message537

Author stefan
Recipients
Date 2002-12-11.15:41:27
Message-id
In-reply-to
the 'menu' method in class MultilinkHTMLProperty
contains an error:

at line 1144 you declare 'value = self._value',
which is a list.

at line 1160 you make 'value' an iterator over
'self._value'.

at line 1170 you call 'if optionid in value...'

the error I see is due to 'value' not being a list
in line 1170, which is clearly caused by line 1160.
As I guess line 1160's value variable is totally unrelated,
I renamed it to 'for v in self._value...' and everything
works again.
History
Date User Action Args
2009-02-03 14:20:10adminlinkissue652089 messages
2009-02-03 14:20:10admincreate