From 9c64be0f9c6bfda040a9aaff07112cba81780905 Mon Sep 17 00:00:00 2001 From: Arvid Norberg Date: Sat, 18 Dec 2010 21:53:23 +0000 Subject: [PATCH] added some missing python bindings --- bindings/python/src/torrent_status.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bindings/python/src/torrent_status.cpp b/bindings/python/src/torrent_status.cpp index 471359bfc..d0e3656f8 100644 --- a/bindings/python/src/torrent_status.cpp +++ b/bindings/python/src/torrent_status.cpp @@ -102,10 +102,12 @@ void bind_torrent_status() enum_("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() ; }