From dec3bf564e5ca3b6fc103b3eb66a80e8abe8229b Mon Sep 17 00:00:00 2001 From: Sebastian Koslowski <koslowski@kit.edu> Date: Fri, 5 Feb 2016 11:43:26 +0100 Subject: grc: nicer block documentation tooltip and properties dialog tab --- grc/python/extract_docs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'grc/python/extract_docs.py') 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 -- cgit v1.2.3