update @ Thu 26 May 22:06:22 EEST 2022

Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
This commit is contained in:
Ari Archer 2022-05-26 22:06:22 +03:00
parent 6b7801ab5b
commit 533b7d5e7f
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: A50D5B4B599AF8A2

View file

@ -182,7 +182,7 @@ def pick_blog(config: Dict) -> str:
.prompt(
map(
lambda key: f"{key} | {b64decode(config['blogs'][key]['title']).decode()!r}",
config["blogs"].keys(),
tuple(config["blogs"].keys())[::-1],
),
"--prompt='Pick blog: '",
)[0]
@ -471,6 +471,7 @@ def edit_minimise(blog: str, config: Dict) -> int:
EDIT_HOOKS: Dict = {
"quit": lambda *_: EXIT_OK,
"title": edit_title,
"keywords": edit_keywords,
"content": edit_content,