SAAS-1239: Listener stats with Shoutcast not working

This commit is contained in:
Albert Santoni 2015-12-04 15:05:17 -05:00
parent 2eea558dfd
commit 91e1252b86
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ class ListenerStat(Thread):
def get_shoutcast_stats(self, ip):
url = 'http://%(host)s:%(port)s/admin.cgi?sid=1&mode=viewxml' % ip
document = self.get_stream_server_xml(ip, url, is_shoutcast=True)
dom = defusedxml.parseString(document)
dom = defusedxml.minidom.parseString(document)
current_listeners = dom.getElementsByTagName("CURRENTLISTENERS")
timestamp = datetime.utcnow().strftime("%Y-%m-%d %H:%M:%S")