[EMAIL PROTECTED] wrote:
> Shouldn’t..
>       def _getSaveNewUnchanged(self):
>               try:
>                       ret = self._saveNewUnchanged
>               except AttributeError:
>                       ret = self._saveNewUnchanged = False
>               return ret
> 
> Be..
>       def _getSaveNewUnchanged(self):
>               try:
>                       ret = self._saveNewUnchanged
>               except AttributeError:
>                       ret = False
>               return ret
> ?

Yes, that would be better so it doesn't need to look for the missing 
attribute each time. Do you have/want commit access to dabo to make such 
changes yourself?

-- 
pkm ~ http://paulmcnett.com


_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users
Searchable Archives: http://leafe.com/archives/search/dabo-users
This message: http://leafe.com/archives/byMID/dabo-users/[EMAIL PROTECTED]

Reply via email to