summaryrefslogtreecommitdiffstats
path: root/source/python/py_lsa.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2003-03-20 01:05:22 +0000
committerTim Potter <tpot@samba.org>2003-03-20 01:05:22 +0000
commit0308a0a11265050f53fc7e8e03f8e17b04adb45d (patch)
treec94b9610c2007d9f981bba1b1e03a50a1d8eed3b /source/python/py_lsa.c
parent68b4052281d22dace2ae9e48d022fa288c0a6425 (diff)
downloadsamba-0308a0a11265050f53fc7e8e03f8e17b04adb45d.tar.gz
samba-0308a0a11265050f53fc7e8e03f8e17b04adb45d.tar.xz
samba-0308a0a11265050f53fc7e8e03f8e17b04adb45d.zip
Merge of compiler warning fixups.
Diffstat (limited to 'source/python/py_lsa.c')
-rw-r--r--source/python/py_lsa.c40
1 files changed, 20 insertions, 20 deletions
diff --git a/source/python/py_lsa.c b/source/python/py_lsa.c
index 22db29665a0..c063dcba81f 100644
--- a/source/python/py_lsa.c
+++ b/source/python/py_lsa.c
@@ -383,32 +383,32 @@ static PyMethodDef lsa_methods[] = {
{ "setup_logging", (PyCFunction)py_setup_logging,
METH_VARARGS | METH_KEYWORDS,
- "Set up debug logging.
-
-Initialises Samba's debug logging system. One argument is expected which
-is a boolean specifying whether debugging is interactive and sent to stdout
-or logged to a file.
-
-Example:
-
->>> spoolss.setup_logging(interactive = 1)" },
+ "Set up debug logging.\n"
+"\n"
+"Initialises Samba's debug logging system. One argument is expected which\n"
+"is a boolean specifying whether debugging is interactive and sent to stdout\n"
+"or logged to a file.\n"
+"\n"
+"Example:\n"
+"\n"
+">>> spoolss.setup_logging(interactive = 1)" },
{ "get_debuglevel", (PyCFunction)get_debuglevel,
METH_VARARGS,
- "Set the current debug level.
-
-Example:
-
->>> spoolss.get_debuglevel()
-0" },
+ "Set the current debug level.\n"
+"\n"
+"Example:\n"
+"\n"
+">>> spoolss.get_debuglevel()\n"
+"0" },
{ "set_debuglevel", (PyCFunction)set_debuglevel,
METH_VARARGS,
- "Get the current debug level.
-
-Example:
-
->>> spoolss.set_debuglevel(10)" },
+ "Get the current debug level.\n"
+"\n"
+"Example:\n"
+"\n"
+">>> spoolss.set_debuglevel(10)" },
{ NULL }
};