diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-02-28 20:04:58 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-02-28 20:04:58 +0100 |
commit | 2ba62662f8e2578153be3125eb557b9349ccfd3b (patch) | |
tree | 829349576e6fa8431573abed7676b2cd61b98485 /source4/param/param.py | |
parent | fc6bc92e116d3891671a77bc4564047eefd69f95 (diff) | |
download | samba-2ba62662f8e2578153be3125eb557b9349ccfd3b.tar.gz |
Remove sDefault as static variable.
(This used to be commit 16f36ce499e93860dd535034a584ec2b93e7a172)
Diffstat (limited to 'source4/param/param.py')
-rw-r--r-- | source4/param/param.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source4/param/param.py b/source4/param/param.py index 5adf7a4ecc..025acc6be1 100644 --- a/source4/param/param.py +++ b/source4/param/param.py @@ -63,6 +63,7 @@ class LoadParm(object): def __init__(self, *args, **kwargs): _param.LoadParm_swiginit(self,_param.new_LoadParm(*args, **kwargs)) __swig_destroy__ = _param.delete_LoadParm +LoadParm.default_service = new_instancemethod(_param.LoadParm_default_service,None,LoadParm) LoadParm.load = new_instancemethod(_param.LoadParm_load,None,LoadParm) LoadParm.load_default = new_instancemethod(_param.LoadParm_load_default,None,LoadParm) LoadParm.__len__ = new_instancemethod(_param.LoadParm___len__,None,LoadParm) |