Skip to content

Commit 3c67e74

Browse files
author
Federico Fissore
committed
Library Manager: better error message
1 parent b35ab60 commit 3c67e74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arduino-core/src/cc/arduino/contributions/libraries/LibraryInstaller.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ public void updateIndex() throws Exception {
100100

101101
public void install(ContributedLibrary lib, ContributedLibrary replacedLib) throws Exception {
102102
if (lib.isInstalled()) {
103-
System.out.println(I18n.format(_("Library is already installed: {0}"), lib.getName() + _(" version ") + lib.getParsedVersion()));
103+
System.out.println(I18n.format(_("Library is already installed: {0} version {1}"), lib.getName(), lib.getParsedVersion()));
104104
return;
105105
}
106106

0 commit comments

Comments
 (0)