1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-14 12:59:07 +03:00

s4-python: rename samba.glue to samba._glue to indicate it's private.

This commit is contained in:
Jelmer Vernooij
2010-04-08 20:34:40 +02:00
parent cc6e2b8a81
commit a35d876537
6 changed files with 44 additions and 44 deletions

View File

@ -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):