fix quoting

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@122844 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
brett 2004-12-20 10:50:39 +00:00
parent 4195ca2274
commit f19c14ae96

View File

@ -84,7 +84,7 @@ class SvnChangeLogGenerator extends AbstractChangeLogGenerator
{
SimpleDateFormat outputDate = new SimpleDateFormat("yyyy-MM-dd");
// Tell SVN to sort log entries from newest to oldest.
return "-r\"{" + outputDate.format(to) + "}:{" +
return "\"-r{" + outputDate.format(to) + "}:{" +
outputDate.format(before) + "}\"";
}