minor update to a message string in the delete command (missing question mark)
diff --git a/client/lib/commands/delete.js b/client/lib/commands/delete.js
index 5ba648a..b22e5ef 100644
--- a/client/lib/commands/delete.js
+++ b/client/lib/commands/delete.js
@@ -38,7 +38,7 @@
 	_list(ow, function(L) {
 	    require('inquirer')
 		.prompt([{ name: 'name', type: 'list',
-			   message: 'Which action do you wish to delete',
+			   message: 'Which action do you wish to delete?',
 			   choices: L.map(function(action) { return action.name; })
 			 }])
 		.then(function(response) { doDelete(response.name); });