From a35d876537eb301d75a254d9da97268d041da8d6 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Thu, 8 Apr 2010 20:34:40 +0200 Subject: s4-python: rename samba.glue to samba._glue to indicate it's private. --- source4/scripting/python/samba/getopt.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/scripting/python/samba/getopt.py') diff --git a/source4/scripting/python/samba/getopt.py b/source4/scripting/python/samba/getopt.py index 62e16f7c753..1fbfd9c7136 100644 --- a/source4/scripting/python/samba/getopt.py +++ b/source4/scripting/python/samba/getopt.py @@ -22,7 +22,7 @@ import optparse from credentials import Credentials, DONT_USE_KERBEROS, MUST_USE_KERBEROS from hostconfig import Hostconfig -import glue +import samba __docformat__ = "restructuredText" @@ -60,7 +60,7 @@ class SambaOptions(optparse.OptionGroup): else: lp.load_default() if self._debuglevel: - glue.set_debug_level(self._debuglevel) + samba.set_debug_level(self._debuglevel) return lp def get_hostconfig(self): -- cgit