merged torrent_info constructor fix (python bindings) from RC_1_0

This commit is contained in:
arvidn
2015-07-25 16:40:07 -07:00
parent 742548b69c
commit 1a4c017ec5
7 changed files with 92 additions and 22 deletions

View File

@@ -156,7 +156,8 @@ params = { save_path: '.', \
ti: info }
h = ses.add_torrent(params)
while (not h.is_seed()):
s = h.status()
while (not s.is_seeding):
s = h.status()
state_str = ['queued', 'checking', 'downloading metadata', \