File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1313import shutil
1414from pathlib import Path
1515
16- # We assume that this python script is located in ' jabref/lib' while the executable is ' jabref/bin/JabRef'
16+ # We assume that this python script is located in " jabref/lib" while the executable is " jabref/bin/JabRef"
1717script_dir = Path (__file__ ).resolve ().parent .parent
1818JABREF_PATH = script_dir / "bin/JabRef"
1919if not JABREF_PATH .exists ():
@@ -59,7 +59,7 @@ def send_message(message):
5959
6060def add_jabref_entry (data ):
6161 cmd = f'{ str (JABREF_PATH )} --importBibtex """{ data } """'
62- logger . error (f"Try to execute command { cmd } " )
62+ logging . info (f"Try to execute command { cmd } " )
6363 try :
6464 response = subprocess .check_output (shlex .split (cmd ), stderr = subprocess .STDOUT )
6565 except subprocess .CalledProcessError as exc :
You can’t perform that action at this time.
0 commit comments