config_dir: fix

This commit is contained in:
Evgeny Zinoviev 2021-03-23 03:09:40 +03:00
parent f42ce7e143
commit b8c7b0b6ef

View File

@ -1,11 +1,12 @@
import pathlib
import os
from argparse import ArgumentParser
from pprint import pprint
from e3372 import WebAPI, SMSHandler, SMS
config_dir = pathlib.Path.home() + '/.e3372-sms-handler'
config_dir = os.path.join(pathlib.Path.home(), '.e3372-sms-handler')
def sms_handler(sms: SMS):