if verbose >= VERBOSE_CHANGE:
msg = "Successfully updated domain {} on {}:".format(domain, server)
if ipv4 is not None:
- msg += " IPv4={}".format(ipv4)
+ msg += " IPv4={} -> {}".format(curIPv4, ipv4)
if ipv6 is not None:
- msg += " IPv6={}".format(ipv6)
+ msg += " IPv6={} -> {}".format(curIPv6, ipv6)
print(msg)
# all went all right
return True