Skip to content

Commit 04df31a

Browse files
author
Vladimir Kotal
committed
use ; as separator
1 parent bc17028 commit 04df31a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

opengrok-indexer/src/main/java/org/opengrok/indexer/web/SearchHelper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ public SearchHelper prepareExec(SortedSet<String> projects) {
350350
if (projects.size() > 0) {
351351
errorMsg = errorMsg + " for projects: " + String.join(", ", projects);
352352
}
353-
errorMsg = errorMsg + " " + e.getMessage();
353+
errorMsg = errorMsg + "; " + e.getMessage();
354354
} catch (IOException e) {
355355
errorMsg = e.getMessage();
356356
}

0 commit comments

Comments
 (0)