From 2a31f0b50976dc5b6770639b60184a8ef9158b8b Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 26 Sep 2012 13:20:42 -0700 Subject: smb.conf(5): Consistent spelling of parameter names. This includes spacing and casing. --- source4/scripting/python/samba/tests/docs.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4') diff --git a/source4/scripting/python/samba/tests/docs.py b/source4/scripting/python/samba/tests/docs.py index f3c9fdf34c..ec2ab37adc 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() -- cgit