diff --git a/src/java/org/apache/ivy/ant/IvyAntSettings.java b/src/java/org/apache/ivy/ant/IvyAntSettings.java index 27f63904..e3df4c02 100644 --- a/src/java/org/apache/ivy/ant/IvyAntSettings.java +++ b/src/java/org/apache/ivy/ant/IvyAntSettings.java @@ -271,10 +271,10 @@ public class IvyAntSettings extends DataType { ivyEngine = ivy; } catch (ParseException e) { throw new BuildException("impossible to configure ivy:settings with given " - + (file != null ? "file: " + file : "url :" + url) + " :" + e, e); + + (file != null ? "file: " + file : "url: " + url) + " : " + e, e); } catch (IOException e) { throw new BuildException("impossible to configure ivy:settings with given " - + (file != null ? "file: " + file : "url :" + url) + " :" + e, e); + + (file != null ? "file: " + file : "url: " + url) + " : " + e, e); } finally { ivy.getLoggerEngine().popLogger(); }