From: Jelmer Vernooij Date: Wed, 26 Sep 2012 20:20:42 +0000 (-0700) Subject: smb.conf(5): Consistent spelling of parameter names. X-Git-Tag: ldb-1.1.14~233 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2a31f0b50976dc5b6770639b60184a8ef9158b8b;p=thirdparty%2Fsamba.git smb.conf(5): Consistent spelling of parameter names. This includes spacing and casing. --- diff --git a/source4/scripting/python/samba/tests/docs.py b/source4/scripting/python/samba/tests/docs.py index f3c9fdf34c6..ec2ab37adcb 100644 --- a/source4/scripting/python/samba/tests/docs.py +++ b/source4/scripting/python/samba/tests/docs.py @@ -44,11 +44,11 @@ def get_documented_parameters(sourcedir): for l in out.splitlines(): m = re.match('(.*).*', l) if m: - name = m.group(1).replace(" ", "") + name = m.group(1) yield name @@ -73,7 +73,7 @@ def get_implementation_parameters(sourcedir): continue name = m.group(1) - yield name.lower().replace(" ", "") + yield name finally: f.close()