From 4febb4dd1417de8961b2ab092b0c530ca088b72a Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Wed, 21 Jan 2009 17:19:39 -0700 Subject: Started roughing out new crud base classes --- ipalib/frontend.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ipalib/frontend.py') diff --git a/ipalib/frontend.py b/ipalib/frontend.py index 800bb43b3..77a49d8bc 100644 --- a/ipalib/frontend.py +++ b/ipalib/frontend.py @@ -617,6 +617,8 @@ class Method(Attribute, Command): `Property` classes. """ __public__ = Attribute.__public__.union(Command.__public__) + extra_options_first = False + extra_args_first = False def __init__(self): super(Method, self).__init__() -- cgit