9 lines
190 B
Python
9 lines
190 B
Python
|
# -*- 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")
|