CC-1799 - Live Studio Playout from media library (pytagsfs)

dealing with programs that modify a file by using a tmp file.
This commit is contained in:
naomiaro 2011-05-05 18:12:26 -04:00 committed by martin
parent 306712fdc1
commit c191bc906f
3 changed files with 65 additions and 21 deletions

View file

@ -372,18 +372,16 @@ class AirTimeApiClient(ApiClientInterface):
response = None
try:
url = "http://%s:%s/%s/%s" % (self.config["base_url"], str(self.config["base_port"]), self.config["api_base"], self.config["update_media_url"])
#logger.debug(url)
url = url.replace("%%api_key%%", self.config["api_key"])
logger.debug(url)
url = url.replace("%%api_key%%", self.config["api_key"])
data = recursive_urlencode(md)
req = urllib2.Request(url, data)
response = urllib2.urlopen(req).read()
logger.info("update media %s", response)
response = json.loads(response)
logger.info("update media %s", response)
except Exception, e:
logger.error("Exception: %s", e)