From 2c85a16762dc2518d0b9736370844d657e8a790d Mon Sep 17 00:00:00 2001
From: RaNaN <Mast3rRaNaN@hotmail.de>
Date: Sat, 31 Dec 2011 16:03:10 +0100
Subject: missing file

---
 .../thriftbackend/thriftgen/pyload/ttypes.py       | 30 +++++++++++++++++-----
 1 file changed, 24 insertions(+), 6 deletions(-)

(limited to 'module/remote')

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:
-- 
cgit v1.2.3