mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Missing raw_msg=True
This commit is contained in:
parent
05a374d8d5
commit
0af05ea312
1 changed files with 1 additions and 1 deletions
|
@ -260,7 +260,7 @@ def dyndns_update(
|
|||
ok, result = dig(dyn_host, "A")
|
||||
dyn_host_ip = result[0] if ok == "ok" and len(result) else None
|
||||
if not dyn_host_ip:
|
||||
raise YunohostError("Failed to resolve %s" % dyn_host)
|
||||
raise YunohostError("Failed to resolve %s" % dyn_host, raw_msg=True)
|
||||
|
||||
ok, result = dig(domain, rdtype, resolvers=[dyn_host_ip])
|
||||
if ok == "ok":
|
||||
|
|
Loading…
Add table
Reference in a new issue