diff --git a/blessed/terminal.py b/blessed/terminal.py index b75130d..b8b1240 100644 --- a/blessed/terminal.py +++ b/blessed/terminal.py @@ -1153,7 +1153,7 @@ def split_seqs(self, text, maxsplit=0): return result def wrap(self, text, width=None, **kwargs): - """ + r""" Text-wrap a string, returning a list of wrapped lines. :arg str text: Unlike :func:`textwrap.wrap`, ``text`` may contain @@ -1162,7 +1162,7 @@ def wrap(self, text, width=None, **kwargs): :func:`string.expandtabs`. :arg int width: Unlike :func:`textwrap.wrap`, ``width`` will default to the width of the attached terminal. - :arg kwargs: See :py:class:`textwrap.TextWrapper` + :arg \**kwargs: See :py:class:`textwrap.TextWrapper` :rtype: list :returns: List of wrapped lines