urllib: fix error message
parent
81da1f1ab2
commit
be0796ce14
|
@ -33,8 +33,8 @@ const (
|
||||||
)
|
)
|
||||||
|
|
||||||
fn error_msg(message, val string) string {
|
fn error_msg(message, val string) string {
|
||||||
mut msg := 'net.url: $message'
|
mut msg := 'net.urllib: $message'
|
||||||
if val == '' { msg = '$msg ($val)' }
|
if val != '' { msg = '$msg ($val)' }
|
||||||
return msg
|
return msg
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue