diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-02-11 15:00:54 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-02-11 15:00:54 +0100 |
commit | ef15effba39ebcba190180fbf1f8265df237bfee (patch) | |
tree | 161019c0feb1e3ba9db64703d6e4c5fc71a47085 | |
parent | more fixes (diff) | |
download | pyload-ef15effba39ebcba190180fbf1f8265df237bfee.tar.xz |
closed #239
-rw-r--r-- | module/remote/thriftbackend/thriftgen/pyload/Pyload.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/module/remote/thriftbackend/thriftgen/pyload/Pyload.py b/module/remote/thriftbackend/thriftgen/pyload/Pyload.py index 0f7e0297f..51d76d46c 100644 --- a/module/remote/thriftbackend/thriftgen/pyload/Pyload.py +++ b/module/remote/thriftbackend/thriftgen/pyload/Pyload.py @@ -4171,7 +4171,7 @@ class statusDownloads_result: """ thrift_spec = ( - (0, TType.LIST, 'success', (TType.STRUCT,(DownloadStatus, DownloadStatus.thrift_spec)), None, ), # 0 + (0, TType.LIST, 'success', (TType.STRUCT,(DownloadInfo, DownloadInfo.thrift_spec)), None, ), # 0 ) def __init__(self, success=None,): @@ -4191,7 +4191,7 @@ class statusDownloads_result: self.success = [] (_etype79, _size76) = iprot.readListBegin() for _i80 in xrange(_size76): - _elem81 = DownloadStatus() + _elem81 = DownloadInfo() _elem81.read(iprot) self.success.append(_elem81) iprot.readListEnd() |