mirror of
https://github.com/YunoHost/moulinette.git
synced 2024-09-03 20:06:31 +02:00
base64 dns key
This commit is contained in:
parent
12b399c6d9
commit
94d59e4085
1 changed files with 2 additions and 1 deletions
|
@ -62,7 +62,8 @@ def dyndns_subscribe(subscribe_host="dyndns.yunohost.org", domain=None, key=None
|
||||||
# Send subscription
|
# Send subscription
|
||||||
r = requests.post('http://'+ subscribe_host +'/key/'+ base64.b64encode(key), data={ 'subdomain': domain })
|
r = requests.post('http://'+ subscribe_host +'/key/'+ base64.b64encode(key), data={ 'subdomain': domain })
|
||||||
if r.status_code != 201:
|
if r.status_code != 201:
|
||||||
error = json.loads(r.text)['error']
|
try: error = json.loads(r.text)['error']
|
||||||
|
except: error = "Server error"
|
||||||
raise YunoHostError(1, _("An error occured during DynDNS registration: "+ error))
|
raise YunoHostError(1, _("An error occured during DynDNS registration: "+ error))
|
||||||
|
|
||||||
win_msg(_("Subscribed to DynDNS"))
|
win_msg(_("Subscribed to DynDNS"))
|
||||||
|
|
Loading…
Add table
Reference in a new issue