Hi:
It appears another bug has been introduced in p1, but this one is easy :)
On line 348, spacing got out of wack. It looks like it may be a tab
conversion error. In any case, it should look more like:
try:
return owfs_get(object.__getattribute__(self, '_attrs')[name])
except KeyError:
raise AttributeError, name
But actually looks like:
try:
return
owfs_get(object.__getattribute__(self, '_attrs')[name])
except KeyError:
raise AttributeError, name
Once I matched up the sapcing, it works again.
Simple test:
python
>>> import ow;
If it blows up, it will do so right there and tell you the line;
otherwise, it will return you to your prompt.
Thanks!
--Jim
------------------------------------------------------------------------------
Sell apps to millions through the Intel(R) Atom(Tm) Developer Program
Be part of this innovative community and reach millions of netbook users
worldwide. Take advantage of special opportunities to increase revenue and
speed time-to-market. Join now, and jumpstart your future.
http://p.sf.net/sfu/intel-atom-d2d
_______________________________________________
Owfs-developers mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/owfs-developers