From 4443d7af66f647856a797de8bf8b011ac0bbb728 Mon Sep 17 00:00:00 2001 From: martin Date: Sat, 1 Jan 2011 22:46:21 -0500 Subject: [PATCH] -fixed problem where cue'd files were not being played. --- pypo/api_clients/api_client.py | 1 + pypo/install/pypo-install.py | 1 + 2 files changed, 2 insertions(+) diff --git a/pypo/api_clients/api_client.py b/pypo/api_clients/api_client.py index 4549b6781..8a625a68b 100644 --- a/pypo/api_clients/api_client.py +++ b/pypo/api_clients/api_client.py @@ -258,6 +258,7 @@ class CampcasterApiClient(ApiClientInterface): try: src = src + "/api_key/" + self.config["api_key"] + logger.debug("try to download from %s to %s", src, dst) # check if file exists already before downloading again filename, headers = urllib.urlretrieve(src, dst) diff --git a/pypo/install/pypo-install.py b/pypo/install/pypo-install.py index 9987aa23f..ffd0afe1f 100644 --- a/pypo/install/pypo-install.py +++ b/pypo/install/pypo-install.py @@ -67,6 +67,7 @@ try: create_path(BASE_PATH+"bin") create_path(BASE_PATH+"cache") create_path(BASE_PATH+"files") + create_path(BASE_PATH+"tmp") create_path(BASE_PATH+"files/basic") create_path(BASE_PATH+"files/fallback") create_path(BASE_PATH+"files/jingles")