pyparam: fix formatting.
authorJelmer Vernooij <jelmer@samba.org>
Sun, 26 Feb 2012 21:43:15 +0000 (22:43 +0100)
committerJelmer Vernooij <jelmer@samba.org>
Sun, 26 Feb 2012 22:19:07 +0000 (23:19 +0100)
source4/param/pyparam.c

index 4d246a7d8a469b1d930d614cb6cb4817da901080..9874006bfaaf8ce95a689f4c2ed3cc737a848887 100644 (file)
@@ -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)