use the sclient, the aclient appears to be broken

This commit is contained in:
Damien Churchill 2008-10-13 18:19:21 +00:00
commit a5c58fb8dd

View file

@ -267,9 +267,8 @@ class json_rpc:
for torrent in torrents: for torrent in torrents:
filename = os.path.basename(torrent['path']) filename = os.path.basename(torrent['path'])
log.debug('Adding torrent %s' % filename)
fdump = open(torrent['path'], 'r').read() fdump = open(torrent['path'], 'r').read()
aclient.add_torrent_file_binary(filename, fdump, torrent['options']) sclient.add_torrent_file_binary(filename, fdump, torrent['options'])
def register(): def register():
component.get("PageManager").register_page("/json/rpc",json_rpc) component.get("PageManager").register_page("/json/rpc",json_rpc)