[FIX] config: when assigning new value, ensure that value are correctly type checked
[odoo/odoo.git] / openerp / tiny_socket.py
index cc0f09e..b4bed83 100644 (file)
@@ -26,9 +26,11 @@ import marshal
 
 import netsvc
 
+#.apidoc title: Net-RPC classes
+
 class Myexception(Exception):
     """
-    custome exception object store 
+    custom exception object store
     * faultcode
     * faulestring
     * args
@@ -94,3 +96,5 @@ class mysocket:
             raise res[0]
         else:
             return res[0]
+
+# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: