JabRef version
5.6 (latest release)
Operating system
GNU / Linux
Details on version and operating system
NixOS
Checked with the latest development build
Steps to reproduce the behaviour
- Import an entry from a browser.
- 2 Nothing happens.
Appendix
In
|
cmd = str(JABREF_PATH).split() + ["--importBibtex", r"{}".format(data)] |
the data is passed directly. When there is space in data then it will be parsed as multiple strings. The fix is simple, i.e. change it to
r"'{}'".format(data), as posted in
NixOS/nixpkgs#162593 (comment), thanks to @koschtschei.
JabRef version
5.6 (latest release)
Operating system
GNU / Linux
Details on version and operating system
NixOS
Checked with the latest development build
Steps to reproduce the behaviour
Appendix
In
jabref/buildres/linux/jabrefHost.py
Line 77 in 3c2aae9
r"'{}'".format(data), as posted in NixOS/nixpkgs#162593 (comment), thanks to @koschtschei.