diff options
author | Anthon van der Neut <anthon@mnt.org> | 2018-11-26 09:24:31 +0100 |
---|---|---|
committer | Anthon van der Neut <anthon@mnt.org> | 2018-11-26 09:24:31 +0100 |
commit | 10438bc786dc6a381193025779cf86e072a1108a (patch) | |
tree | 19880df160235f35b4e3443509a77e84bd560870 /scalarstring.py | |
parent | fa720ebff5f3ee49cb70d3741d07e1f3fd957a62 (diff) | |
download | ruamel.yaml-10438bc786dc6a381193025779cf86e072a1108a.tar.gz |
fix for issue with folds after (and before) spaces being emitted as BEL character instead of discarding0.15.80
Diffstat (limited to 'scalarstring.py')
-rw-r--r-- | scalarstring.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scalarstring.py b/scalarstring.py index c7b1a78..0566164 100644 --- a/scalarstring.py +++ b/scalarstring.py @@ -21,7 +21,7 @@ __all__ = [ class ScalarString(text_type): - __slots__ = (Anchor.attrib) + __slots__ = Anchor.attrib def __new__(cls, *args, **kw): # type: (Any, Any) -> Any |