Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ietf/templates/base/icons.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon"
href="{% static 'ietf/images/ietf-logo-nor-mask.svg' %}"
{% if server_mode and server_mode == 'production' %}color="#ffffff"{% else %}color="#ffc4c4"{% endif %}>
color="{% if server_mode and server_mode == 'production' %}#ffffff{% else %}#ffc4c4{% endif %}">
<meta name="msapplication-TileColor"
{% if server_mode and server_mode == 'production' %}content="#ffffff"{% else %}color="#ffc4c4"{% endif %}>
content="{% if server_mode and server_mode == 'production' %}#ffffff{% else %}#ffc4c4{% endif %}">
<meta name="theme-color"
{% if server_mode and server_mode == 'production' %}content="#ffffff"{% else %}color="#ffc4c4"{% endif %}>
content="{% if server_mode and server_mode == 'production' %}#ffffff{% else %}#ffc4c4{% endif %}">
2 changes: 1 addition & 1 deletion ietf/templates/doc/htmlized_base.html
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@

{% block morecss %}{% endblock %}
</style>
{% block pagehead %}{% endblock %}\
{% block pagehead %}{% endblock %}
{% include "base/icons.html" %}
</head>
<body {% block bodyAttrs %}{% endblock %}>
Expand Down
7 changes: 3 additions & 4 deletions ietf/utils/test_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -997,10 +997,9 @@ def validate(self, kind):
for msg in json.loads(result)["messages"]:
if vnu_filter_message(msg, False, True):
continue
errors = vnu_fmt_message(file, msg, content)

if errors:
testcase.fail(errors)
errors = vnu_fmt_message(file, msg, content.decode("utf-8"))
if errors:
testcase.fail(errors)

tmpdir.cleanup()

Expand Down