summaryrefslogtreecommitdiff
path: root/scalarstring.py
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2018-08-23 13:29:47 +0200
committerAnthon van der Neut <anthon@mnt.org>2018-08-23 13:29:47 +0200
commit313121f1489cf8cf4dc643ca7280650939368cef (patch)
tree903d546b42052713b5638b735e023959b6131b9f /scalarstring.py
parent6ebe313aa242978554ace43c33e0d05b7c7a26e3 (diff)
downloadruamel.yaml-313121f1489cf8cf4dc643ca7280650939368cef.tar.gz
remove erroneous version from CHANGES, update use of LiteralScalarString
Diffstat (limited to 'scalarstring.py')
-rw-r--r--scalarstring.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/scalarstring.py b/scalarstring.py
index a701f11..18dcc15 100644
--- a/scalarstring.py
+++ b/scalarstring.py
@@ -13,7 +13,9 @@ __all__ = [
'FoldedScalarString',
'SingleQuotedScalarString',
'DoubleQuotedScalarString',
- 'PreservedScalarString',
+ # PreservedScalarString is the old name, as it was the first to be preserved on rt,
+ # use LiteralScalarString instead
+ 'PreservedScalarString',
]