Skip to content

Commit c6bd88f

Browse files
committed
Fix for TMP dir
1 parent 3eab3d4 commit c6bd88f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

main.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import cloudflare
66
import configparser
77
import pandas as pd
8+
import os
89

910
class App:
1011
def __init__(self):
@@ -20,6 +21,9 @@ def run(self):
2021
config = configparser.ConfigParser()
2122
config.read('config.ini')
2223

24+
#check tmp dir
25+
os.makedirs("./tmp", exist_ok=True)
26+
2327
all_domains = []
2428
for list in config["Lists"]:
2529

0 commit comments

Comments
 (0)