diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-12-31 16:03:10 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2011-12-31 16:03:10 +0100 |
commit | 2c85a16762dc2518d0b9736370844d657e8a790d (patch) | |
tree | f39fe91bcfe66643f3f5c0dea7ffec874c1fc8dd /module/remote | |
parent | new crypter plugin API, now decrypting possible for now. (diff) | |
download | pyload-2c85a16762dc2518d0b9736370844d657e8a790d.tar.xz |
missing file
Diffstat (limited to 'module/remote')
-rw-r--r-- | module/remote/thriftbackend/thriftgen/pyload/ttypes.py | 30 |
1 files changed, 24 insertions, 6 deletions
diff --git a/module/remote/thriftbackend/thriftgen/pyload/ttypes.py b/module/remote/thriftbackend/thriftgen/pyload/ttypes.py index 1925029ed..b2da9748d 100644 --- a/module/remote/thriftbackend/thriftgen/pyload/ttypes.py +++ b/module/remote/thriftbackend/thriftgen/pyload/ttypes.py @@ -657,29 +657,25 @@ class ServiceCall(TBase): - plugin - func - arguments - - parseArguments """ __slots__ = [ 'plugin', 'func', 'arguments', - 'parseArguments', ] thrift_spec = ( None, # 0 (1, TType.STRING, 'plugin', None, None, ), # 1 (2, TType.STRING, 'func', None, None, ), # 2 - (3, TType.LIST, 'arguments', (TType.STRING,None), None, ), # 3 - (4, TType.BOOL, 'parseArguments', None, None, ), # 4 + (3, TType.STRING, 'arguments', None, None, ), # 3 ) - def __init__(self, plugin=None, func=None, arguments=None, parseArguments=None,): + def __init__(self, plugin=None, func=None, arguments=None,): self.plugin = plugin self.func = func self.arguments = arguments - self.parseArguments = parseArguments class OnlineStatus(TBase): @@ -784,6 +780,28 @@ class FileDoesNotExists(TExceptionBase): return repr(self) +class UserDoesNotExists(TExceptionBase): + """ + Attributes: + - user + """ + + __slots__ = [ + 'user', + ] + + thrift_spec = ( + None, # 0 + (1, TType.STRING, 'user', None, None, ), # 1 + ) + + def __init__(self, user=None,): + self.user = user + + def __str__(self): + return repr(self) + + class ServiceDoesNotExists(TExceptionBase): """ Attributes: |