Skip to content

Commit 0cd0c68

Browse files
author
y-p
committed
Merge pull request #5959 from gandalf013/master
BUG: use the "join" string in Appender decorator
2 parents 779e57c + ea9e848 commit 0cd0c68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/util/decorators.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def __call__(self, func):
102102
func.__doc__ = func.__doc__ if func.__doc__ else ''
103103
self.addendum = self.addendum if self.addendum else ''
104104
docitems = [func.__doc__, self.addendum]
105-
func.__doc__ = ''.join(docitems)
105+
func.__doc__ = self.join.join(docitems)
106106
return func
107107

108108

0 commit comments

Comments
 (0)