added some missing python bindings

This commit is contained in:
Arvid Norberg 2010-12-18 21:53:23 +00:00
parent de3a5784be
commit 9c64be0f9c
1 changed files with 2 additions and 0 deletions

View File

@ -102,10 +102,12 @@ void bind_torrent_status()
enum_<torrent_status::state_t>("states")
.value("queued_for_checking", torrent_status::queued_for_checking)
.value("checking_files", torrent_status::checking_files)
.value("downloading_metadata", torrent_status::downloading_metadata)
.value("downloading", torrent_status::downloading)
.value("finished", torrent_status::finished)
.value("seeding", torrent_status::seeding)
.value("allocating", torrent_status::allocating)
.value("checking_resume_data", torrent_status::checking_resume_data)
.export_values()
;
}