Skip to content

Commit bc2414d

Browse files
authored
Merge pull request #1714 from vladak/groups_match_singlequotes
more single quotes for patterns in Groups output
2 parents aceba4f + 49f5a93 commit bc2414d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/org/opensolaris/opengrok/configuration/Groups.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ public boolean call(Group g) {
279279

280280
out.println(matched.size() + " group(s) match(es) the \"" + match + "\"");
281281
for (Group g : matched) {
282-
out.println(g.getName() + " \"" + g.getPattern() + "\"");
282+
out.println(g.getName() + " '" + g.getPattern() + "'");
283283
}
284284
}
285285

0 commit comments

Comments
 (0)