20250118.1737211152

This commit is contained in:
fz0x1 2025-01-18 15:39:12 +01:00
parent 4093bc4581
commit da6c370616
2 changed files with 4 additions and 4 deletions

View file

@ -214,7 +214,7 @@
("L" "Unselected web capture"
entry
(file+headline "~/org/inbox.org" "Web links")
"* [%<%Y-%m-%d>] [[%:link][%(transform-square-brackets-to-round-ones \"%:description\")]] %?\n:PROPERTIES:\n:ID: %(org-id-new)\n:END:\n"
"* [%<%Y-%m-%d>] [[%:link][%(transform-square-brackets-to-round-ones \"%:description\")]] \n:PROPERTIES:\n:ID: %(org-id-new)\n:END:\n%?"
:empty-lines 0)))
(setq org-todo-keywords

View file

@ -415,7 +415,7 @@ def export():
text=True,
check=True,
)
print(result.stderr)
print(result.stdout)
except subprocess.CalledProcessError as e:
print(f"Error writing to journal: {e.stderr}")
raise
@ -478,7 +478,7 @@ def insert():
text=True,
check=True,
)
print(result.stderr)
print(result.stdout)
except subprocess.CalledProcessError as e:
print(f"Error inserting single entry: {e.stderr}")
raise
@ -504,7 +504,7 @@ def insert():
text=True,
check=True,
)
print(result.stderr)
print(result.stdout)
except subprocess.CalledProcessError as e:
print(
f"Error during bulk import: {e.stderr}, file: {temp_file_path}"