summaryrefslogtreecommitdiff
path: root/emitter.py
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2019-11-26 08:00:33 +0100
committerAnthon van der Neut <anthon@mnt.org>2019-11-26 08:00:33 +0100
commit245f5a1667033634d4069ee48b7d6915489148fd (patch)
treed52fb0f23d3e3504d6d2df4256a7536faac5d6d1 /emitter.py
parentcc39b48f95d59bc09cea2470d1d69431dee43725 (diff)
downloadruamel.yaml-245f5a1667033634d4069ee48b7d6915489148fd.tar.gz
empty string mapping key preservation
Would convert to explicit key (? '')
Diffstat (limited to 'emitter.py')
-rw-r--r--emitter.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/emitter.py b/emitter.py
index 73fbe05..41dc3e8 100644
--- a/emitter.py
+++ b/emitter.py
@@ -769,7 +769,8 @@ class Emitter(object):
or (isinstance(self.event, MappingStartEvent) and self.event.flow_style is True)
or (
isinstance(self.event, ScalarEvent)
- and not self.analysis.empty
+ # if there is an explicit style for an empty string, it is a simple key
+ and not (self.analysis.empty and self.style and self.style not in '\'"')
and not self.analysis.multiline
)
or self.check_empty_sequence()