Fix python bindings build

This commit is contained in:
Andrew Resch 2008-06-07 18:59:19 +00:00
parent 0afe661d5a
commit d433ec93a0
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ object pieces(torrent_status const& s)
{
list result;
for (bitfield::const_iterator i(s.pieces->begin()), e(s.pieces->end()); i != e; ++i)
for (bitfield::const_iterator i(s.pieces.begin()), e(s.pieces.end()); i != e; ++i)
result.append(*i);
return result;