M mousikofidi/templates/directory_details.html => mousikofidi/templates/directory_details.html +1 -1
@@ 1,5 1,5 @@
{% if not audio_list and not dir_list and not video_list %}
- <h2 class="bold center">No <a href="https://mousikofidi.info/user_guide/#valid-media-types"valid media files</a> were found here!</h2>
+ <h2 class="bold center">No <a href="https://mousikofidi.info/user_guide/#valid-media-types">valid media files</a> were found here!</h2>
{% else %}
{% include "item_table.html" with context %}
{% include "dir_table.html" with context %}
M test_mousikofidi.py => test_mousikofidi.py +1 -1
@@ 511,7 511,7 @@ def test_browse_dir_empty(client):
rv = client.get(empty_url)
assert (
- b'<h2 class="bold center">No <a href="https://mousikofidi.info/user_guide/#valid-media-types"valid media files</a> were found here!</h2>'
+ b'<h2 class="bold center">No <a href="https://mousikofidi.info/user_guide/#valid-media-types">valid media files</a> were found here!</h2>'
in rv.data
)