change wording of an error msg

remotes/1693176582716663532/tmp_refs/heads/watchparty
Aevann1 2022-10-06 07:08:48 +02:00
parent f52d6258ae
commit 168f18893f
1 changed files with 1 additions and 1 deletions

View File

@ -468,7 +468,7 @@ def normalize_url(url):
def validate_css(css):
if '@import' in css:
return False, "@import statements not allowed."
return False, "@import statements are not allowed!"
for i in css_url_regex.finditer(css):
url = i.group(1)