aboutsummaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
Diffstat (limited to 'share')
-rwxr-xr-xshare/draksec_help.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/draksec_help.py b/share/draksec_help.py
index 6f40fbf..e8af0fa 100755
--- a/share/draksec_help.py
+++ b/share/draksec_help.py
@@ -50,7 +50,7 @@ for f in inspect.getmembers(module, inspect.isfunction):
doc = f[1].__doc__
if doc and len(doc) > 2:
doc = doc[2:]
- argspec = inspect.formatargspec(args, varargs, varkw, locals)
+ argspec = inspect.formatargspec(args, varargs, varkw, locals) + '\n'
if f[0] == 'set_security_conf':
doc = clean.sub('', doc)
doc = clean2.sub('', doc)