We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
.cache
1 parent 939adaa commit cddfbd4Copy full SHA for cddfbd4
transmission-trackers.py
@@ -52,6 +52,8 @@
52
from os import environ as env, path, mkdir
53
try:
54
cache_file = path.join(env.get('TEMP',env.get('TMP',None)) ,'.cache/trackers.txt')
55
+ if not path.isdir(path.dirname(cache_file)):
56
+ mkdir(path.dirname(cache_file))
57
import toml
58
configfile = path.join( \
59
env.get('XDG_CONFIG_HOME', path.join(env.get('HOME',env.get('USERPROFILE',env.get('HOMEPATH',None))),'.config')),
0 commit comments