diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-02-03 15:22:24 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-02-03 15:22:24 +0000 |
commit | 908f3af4f173bb7053009dbf39f95475e78bf68b (patch) | |
tree | d8e6d3eb63baa1e3655a6159b9d9b0f37de86edf /share/draksec_help.py | |
parent | f18582ccb762ff538311fc43a5562a45f4095bfd (diff) | |
download | msec-908f3af4f173bb7053009dbf39f95475e78bf68b.tar msec-908f3af4f173bb7053009dbf39f95475e78bf68b.tar.gz msec-908f3af4f173bb7053009dbf39f95475e78bf68b.tar.bz2 msec-908f3af4f173bb7053009dbf39f95475e78bf68b.tar.xz msec-908f3af4f173bb7053009dbf39f95475e78bf68b.zip |
help draksec::set_default_tip->formatAlaTeX() to have nicer tooltips
Diffstat (limited to 'share/draksec_help.py')
-rwxr-xr-x | share/draksec_help.py | 2 |
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) |