From 5101c6962c7739a9f90179872267cb7718b4875f Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Mon, 24 Feb 2020 19:12:35 +0100 Subject: [PATCH] fix bad quotes --- ansibledoctor/Utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansibledoctor/Utils.py b/ansibledoctor/Utils.py index cbd008d..24a9f20 100644 --- a/ansibledoctor/Utils.py +++ b/ansibledoctor/Utils.py @@ -192,7 +192,7 @@ class SingleLog(Log, metaclass=Singleton): class UnsafeTag: - yaml_tag = u'!unsafe' + yaml_tag = u"!unsafe" def __init__(self, value): self.unsafe = value