Closed fianitnz closed 4 years ago
upnpy/upnpy/soap/SOAP.py
14minidom.parseString(response)
minidom.parseString(response)
Expects a string, not text with EOF.
Possible way to fix the error, remove EOF characters.
After
11response = response.read().decode()
response = response.read().decode()
add response = response.replace("\r","") response = response.replace("\n","")
response = response.replace("\r","")
response = response.replace("\n","")
upnpy/upnpy/soap/SOAP.py
Expects a string, not text with EOF.
Possible way to fix the error, remove EOF characters.
After
add
response = response.replace("\r","")
response = response.replace("\n","")