summaryrefslogtreecommitdiff
path: root/source4/param
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2012-02-26 22:43:15 +0100
committerJelmer Vernooij <jelmer@samba.org>2012-02-26 23:19:07 +0100
commitbb4de6df6ef2ff155e2bdc10794c232a288b0a9b (patch)
tree043252d3ec87eba6c25ee948d5fabc1e42381233 /source4/param
parent852418133ee5a8fc629bf8d3e01458eac6a0342d (diff)
downloadsamba-bb4de6df6ef2ff155e2bdc10794c232a288b0a9b.tar.gz
samba-bb4de6df6ef2ff155e2bdc10794c232a288b0a9b.tar.bz2
samba-bb4de6df6ef2ff155e2bdc10794c232a288b0a9b.zip
pyparam: fix formatting.
Diffstat (limited to 'source4/param')
-rw-r--r--source4/param/pyparam.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/source4/param/pyparam.c b/source4/param/pyparam.c
index 4d246a7d8a..9874006bfa 100644
--- a/source4/param/pyparam.c
+++ b/source4/param/pyparam.c
@@ -475,17 +475,17 @@ static PyObject *py_sbin_dir(PyObject *self)
}
static PyMethodDef pyparam_methods[] = {
- { "default_path", (PyCFunction)py_default_path, METH_NOARGS,
- "Returns the default smb.conf path." },
- { "setup_dir", (PyCFunction)py_setup_dir, METH_NOARGS,
- "Returns the compiled in location of provision tempates." },
- { "modules_dir", (PyCFunction)py_modules_dir, METH_NOARGS,
- "Returns the compiled in location of modules." },
- { "bin_dir", (PyCFunction)py_bin_dir, METH_NOARGS,
- "Returns the compiled in BINDIR." },
- { "sbin_dir", (PyCFunction)py_sbin_dir, METH_NOARGS,
- "Returns the compiled in SBINDIR." },
- { NULL }
+ { "default_path", (PyCFunction)py_default_path, METH_NOARGS,
+ "Returns the default smb.conf path." },
+ { "setup_dir", (PyCFunction)py_setup_dir, METH_NOARGS,
+ "Returns the compiled in location of provision tempates." },
+ { "modules_dir", (PyCFunction)py_modules_dir, METH_NOARGS,
+ "Returns the compiled in location of modules." },
+ { "bin_dir", (PyCFunction)py_bin_dir, METH_NOARGS,
+ "Returns the compiled in BINDIR." },
+ { "sbin_dir", (PyCFunction)py_sbin_dir, METH_NOARGS,
+ "Returns the compiled in SBINDIR." },
+ { NULL }
};
void initparam(void)