diff options
Diffstat (limited to 'grc/python/extract_docs.py')
-rw-r--r-- | grc/python/extract_docs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/python/extract_docs.py b/grc/python/extract_docs.py index d8dc4f4e8f..7c149ce593 100644 --- a/grc/python/extract_docs.py +++ b/grc/python/extract_docs.py @@ -70,7 +70,7 @@ def docstring_guess_from_key(key): ) for match in filter(pattern.match, dir(module)): try: - doc_strings[match] = getattr(module, match).__doc__.strip() + doc_strings[match] = getattr(module, match).__doc__ except AttributeError: continue |