diff options
author | Sebastian Koslowski <koslowski@kit.edu> | 2016-02-05 11:43:26 +0100 |
---|---|---|
committer | Sebastian Koslowski <koslowski@kit.edu> | 2016-02-05 11:55:55 +0100 |
commit | dec3bf564e5ca3b6fc103b3eb66a80e8abe8229b (patch) | |
tree | 8639e4ba8141460f3d9975cade1f902525fbeae4 /grc/python/extract_docs.py | |
parent | e21a3dad6cf8e035ff5104d9eddfce11a8582658 (diff) |
grc: nicer block documentation tooltip and properties dialog tab
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 |