We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c2aae9 commit 0c96007Copy full SHA for 0c96007
buildres/linux/jabrefHost.py
@@ -74,7 +74,7 @@ def send_message(message):
74
75
def add_jabref_entry(data):
76
"""Send string via cli as literal to preserve special characters"""
77
- cmd = str(JABREF_PATH).split() + ["--importBibtex", r"{}".format(data)]
+ cmd = str(JABREF_PATH).split() + ["--importBibtex", r"'{}'".format(data)]
78
logging.info("Try to execute command {}".format(cmd))
79
response = subprocess.check_output(cmd, stderr=subprocess.STDOUT)
80
logging.info("Called JabRef and got: {}".format(response))
0 commit comments