Update error message

This commit is contained in:
Thomas Ward 2019-09-17 18:58:39 -04:00
parent 62f504ab49
commit ac9110549c
No known key found for this signature in database
GPG Key ID: 5B8AD6F4C26ADDDD
1 changed files with 1 additions and 1 deletions

View File

@ -19342,7 +19342,7 @@ parse_cmd_line() {
# left off here is the URI
if [[ $1 = *[![:ascii:]]* ]]; then
if [[ "$(command -v idn)" == "" ]]; then
fatal "URI contains non-ASCII, IDN not available."
fatal "URI contains non-ASCII characters, and IDN not available."
else
URI="$(echo $1 | idn)"
fi