Index: trunk/src/python/unifiedlogger/cms_watcher.py
===================================================================
--- trunk/src/python/unifiedlogger/cms_watcher.py	(revision 440)
+++ trunk/src/python/unifiedlogger/cms_watcher.py	(revision 549)
@@ -71,11 +71,11 @@
           # Is a new message activated?
           if isEmpty(prevList[idx]) and isFull(currList[idx]):
-               results.append("CMS Activated.," + locationMap[idList[idx]] + ", '" + currList[idx] +"'")
+               results.append("CMS Activated," + locationMap[idList[idx]] + ", '" + currList[idx] +"'")
           # Is an existing message turned off?
           if isEmpty(currList[idx]) and isFull(prevList[idx]):
-               results.append("CMS Deactivated., " + locationMap[idList[idx]])
+               results.append("CMS Deactivated, " + locationMap[idList[idx]])
           # Did a message change?
           if isFull(currList[idx]) and isFull(prevList[idx]) and currList[idx] != prevList[idx]:
-               results.append("CMS Updated., " + locationMap[idList[idx]] + ", '" + currList[idx] +"'")
+               results.append("CMS Updated, " + locationMap[idList[idx]] + ", '" + currList[idx] +"'")
 
      # Save the current list as previous
