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")