another decode

This commit is contained in:
stryan 2023-07-24 18:59:39 -04:00
parent 9df2ad1312
commit 07f151dba6

View File

@ -26,7 +26,7 @@ def get_dynip(ifconfig_provider):
r = requests.get(ifconfig_provider) r = requests.get(ifconfig_provider)
print('Checking dynamic IP: ' , r._content.decode().strip('\n')) print('Checking dynamic IP: ' , r._content.decode().strip('\n'))
return r.content.strip('\n') return r.content.decode().strip('\n')
def get_uuid(): def get_uuid():
''' '''