diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-09-03 12:41:05 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-09-03 17:29:19 +0200 |
commit | a0e07d31616102ac905c0519474d2c01db7ee392 (patch) | |
tree | dc069a812353d4a3810e42e247d41ddaebadb843 /youtube_dl/utils.py | |
parent | 88fc294f7f03ce6af9787c6d9c3bad7fc5fade10 (diff) |
[youtube] Move cache into its own module
Diffstat (limited to 'youtube_dl/utils.py')
-rw-r--r-- | youtube_dl/utils.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index 3846dfdca..0bc410e91 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -1076,12 +1076,6 @@ def intlist_to_bytes(xs): return bytes(xs) -def get_cachedir(params={}): - cache_root = os.environ.get('XDG_CACHE_HOME', - os.path.expanduser('~/.cache')) - return params.get('cachedir', os.path.join(cache_root, 'youtube-dl')) - - # Cross-platform file locking if sys.platform == 'win32': import ctypes.wintypes |