[Bindings/Py] Add missing move_flags_t to torrent_handle

This commit is contained in:
Calum Lind 2015-09-30 00:17:28 +01:00
parent c56e878ff4
commit 11a4be737d
1 changed files with 7 additions and 0 deletions

View File

@ -10,6 +10,7 @@
#include <libtorrent/entry.hpp>
#include <libtorrent/peer_info.hpp>
#include "libtorrent/announce_entry.hpp"
#include <libtorrent/storage.hpp>
#include <boost/lexical_cast.hpp>
#include "gil.hpp"
@ -524,4 +525,10 @@ void bind_torrent_handle()
.value("query_pieces", torrent_handle::query_pieces)
.value("query_verified_pieces", torrent_handle::query_verified_pieces)
;
enum_<move_flags_t>("move_flags_t")
.value("always_replace_files", always_replace_files)
.value("fail_if_exist", fail_if_exist)
.value("dont_replace", dont_replace)
;
}