1
0
mirror of https://git.sr.ht/~tsileo/microblog.pub synced 2025-06-05 21:59:23 +02:00

Debug the CI

This commit is contained in:
Thomas Sileo
2018-05-30 22:50:45 +02:00
parent d2be270ccb
commit 3dbe4ba4e9
4 changed files with 7 additions and 5 deletions

View File

@@ -5,7 +5,7 @@ from pymongo import MongoClient
import requests
from utils import strtobool
from utils.key import Key
from utils.key import Key, KEY_DIR
from utils.actor_service import ActorService
from utils.object_service import ObjectService
@@ -35,7 +35,7 @@ HEADERS = [
]
with open('config/me.yml') as f:
with open(os.path.join(KEY_DIR, 'me.yml')) as f:
conf = yaml.load(f)
USERNAME = conf['username']