From: Claudio-Daniel Freire Date: Mon, 18 Jul 2011 17:29:39 +0000 (+0200) Subject: Fix typing annotations in proxy get_attribute_list: flags must accept null X-Git-Tag: nepi-3.0.0~370 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=20cce0e6a76698184f7dc2e4ca11ae91c20107f2;p=nepi.git Fix typing annotations in proxy get_attribute_list: flags must accept null --- diff --git a/src/nepi/util/proxy.py b/src/nepi/util/proxy.py index c33f98a8..6c4db323 100644 --- a/src/nepi/util/proxy.py +++ b/src/nepi/util/proxy.py @@ -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)