13 lines
509 B
Diff
13 lines
509 B
Diff
diff --git a/awscli/customizations/eks/ordered_yaml.py b/awscli/customizations/eks/ordered_yaml.py
|
|
index 23834e0..828280a 100644
|
|
--- a/awscli/customizations/eks/ordered_yaml.py
|
|
+++ b/awscli/customizations/eks/ordered_yaml.py
|
|
@@ -46,6 +46,7 @@ def ordered_yaml_dump(to_dump, stream=None):
|
|
:type stream: file
|
|
"""
|
|
yaml = ruamel.yaml.YAML(typ="safe", pure=True)
|
|
+ yaml.width = 99999
|
|
yaml.default_flow_style = False
|
|
yaml.Representer.add_representer(OrderedDict, _ordered_representer)
|
|
|