Fix errors from merge and review

This commit is contained in:
Benedikt Brückmann 2021-06-25 06:42:17 +02:00
parent 3d85b91dc4
commit 675d034ac7
3 changed files with 8 additions and 5 deletions

View file

@ -248,8 +248,8 @@ def get_lastbuild(builds):
return lastbuild
def check_update_check_data_url(app):
"""Updatecheckdata must have a valid HTTPS URL to protect checkupdates runs."""
def check_update_check_data_url(app): # noqa: D403
"""UpdateCheckData must have a valid HTTPS URL to protect checkupdates runs."""
if app.UpdateCheckData and app.UpdateCheckMode == 'HTTP':
urlcode, codeex, urlver, verex = app.UpdateCheckData.split('|')
for url in (urlcode, urlver):