Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1ecafbb

Browse files
committed
Merge pull request matplotlib#3107 from choffmann/fix-issue-3106
Bug-fix for issue 3106
2 parents ea8fa7b + 22cea1f commit 1ecafbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/docstring.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def __init__(self, addendum, join=''):
8787

8888
def __call__(self, func):
8989
docitems = [func.__doc__, self.addendum]
90-
func.__doc__ = func.__doc__ and ''.join(docitems)
90+
func.__doc__ = func.__doc__ and self.join.join(docitems)
9191
return func
9292

9393

0 commit comments

Comments
 (0)