Fix typing annotations in proxy get_attribute_list: flags must accept null
authorClaudio-Daniel Freire <claudio-daniel.freire@inria.fr>
Mon, 18 Jul 2011 17:29:39 +0000 (19:29 +0200)
committerClaudio-Daniel Freire <claudio-daniel.freire@inria.fr>
Mon, 18 Jul 2011 17:29:39 +0000 (19:29 +0200)
src/nepi/util/proxy.py

index c33f98a..6c4db32 100644 (file)
@@ -654,7 +654,7 @@ class TestbedControllerServer(BaseServer):
         return self._testbed.status(guid)
 
     @Marshalling.handles(GET_ATTRIBUTE_LIST)
-    @Marshalling.args(int, int, Marshalling.bool)
+    @Marshalling.args(int, Marshalling.nullint, Marshalling.bool)
     @Marshalling.retval( Marshalling.pickled_data )
     def get_attribute_list(self, guid, filter_flags = None, exclude = False):
         return self._testbed.get_attribute_list(guid, filter_flags, exclude)