diff options
Diffstat (limited to 'youtube_dl/utils.py')
| -rw-r--r-- | youtube_dl/utils.py | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index 201ed255d..f5f9cde99 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -824,3 +824,9 @@ def intlist_to_bytes(xs):          return ''.join([chr(x) for x in xs])      else:          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')) | 
