summaryrefslogtreecommitdiffstats
path: root/source4/scripting/python/samba/getopt.py
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2010-04-08 20:34:40 +0200
committerJelmer Vernooij <jelmer@samba.org>2010-04-08 23:20:36 +0200
commita35d876537eb301d75a254d9da97268d041da8d6 (patch)
tree488e96e7f4bd61b50494b9f43648ed3be873df4e /source4/scripting/python/samba/getopt.py
parentcc6e2b8a819c6a1da4e6214be9607aab2de270bb (diff)
downloadsamba-a35d876537eb301d75a254d9da97268d041da8d6.tar.gz
samba-a35d876537eb301d75a254d9da97268d041da8d6.tar.xz
samba-a35d876537eb301d75a254d9da97268d041da8d6.zip
s4-python: rename samba.glue to samba._glue to indicate it's private.
Diffstat (limited to 'source4/scripting/python/samba/getopt.py')
-rw-r--r--source4/scripting/python/samba/getopt.py4
1 files changed, 2 insertions, 2 deletions
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):