music-dl/src/ca_certs_locater.py

9 lines
190 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
import sys
if sys.version[0] == "3":
raise ImportError()
import os
from platform_utils import paths
def get():
return os.path.join(paths.app_path(), "cacerts.txt")