Adding space to messages

Change-Id: I75c2a024de51c824dc34d1018cae2f374e425ada
Signed-off-by: Karsten Thoms <karsten.thoms@karakun.com>
diff --git a/bundles/org.eclipse.equinox.p2.touchpoint.natives/src/org/eclipse/equinox/internal/p2/touchpoint/natives/actions/CopyAction.java b/bundles/org.eclipse.equinox.p2.touchpoint.natives/src/org/eclipse/equinox/internal/p2/touchpoint/natives/actions/CopyAction.java
index 427e40b..2db21e8 100644
--- a/bundles/org.eclipse.equinox.p2.touchpoint.natives/src/org/eclipse/equinox/internal/p2/touchpoint/natives/actions/CopyAction.java
+++ b/bundles/org.eclipse.equinox.p2.touchpoint.natives/src/org/eclipse/equinox/internal/p2/touchpoint/natives/actions/CopyAction.java
@@ -86,7 +86,7 @@
 			copiedFileNameBuffer.append(copiedFile.getAbsolutePath()).append(ActionConstants.PIPE);
 		}
 
-		profile.setInstallableUnitProperty(iu, "copied" + ActionConstants.PIPE + originalSource + ActionConstants.PIPE + target, copiedFileNameBuffer.toString()); //$NON-NLS-1$
+		profile.setInstallableUnitProperty(iu, "copied " + ActionConstants.PIPE + originalSource + ActionConstants.PIPE + target, copiedFileNameBuffer.toString()); //$NON-NLS-1$
 
 		return Status.OK_STATUS;
 	}
@@ -119,7 +119,7 @@
 	 */
 	private static void xcopy(ArrayList<File> copiedFiles, File source, File target, boolean overwrite, IBackupStore backupStore) throws IOException {
 		if (!source.exists())
-			throw new IOException("Source: " + source + "does not exists"); //$NON-NLS-1$//$NON-NLS-2$
+			throw new IOException("Source: " + source + " does not exists"); //$NON-NLS-1$//$NON-NLS-2$
 
 		if (source.isDirectory()) {
 			if (target.exists() && target.isFile()) {
@@ -152,7 +152,7 @@
 		} catch (IOException e) {
 			// get the original IOException to the log
 			e.printStackTrace();
-			throw new IOException("Error while copying:" + source.getAbsolutePath()); //$NON-NLS-1$
+			throw new IOException("Error while copying: " + source.getAbsolutePath()); //$NON-NLS-1$
 		}
 		copiedFiles.add(target);
 	}