Index: trunk/src/python/unifiedlogger/wing_project.wpr
===================================================================
--- trunk/src/python/unifiedlogger/wing_project.wpr	(revision 545)
+++ trunk/src/python/unifiedlogger/wing_project.wpr	(revision 549)
@@ -470,12 +470,11 @@
                               (loc('extend_unifiedlogger.py'),
                                {'attrib-starts': [],
-                                'code-line': "                        # if t"\
-        "here's detail field add it to the entries \n",
-                                'first-line': 33L,
+                                'code-line': 'out_file.close()\n',
+                                'first-line': 51L,
                                 'folded-linenos': [],
-                                'sel-line': 56L,
-                                'sel-line-start': 2592L,
-                                'selection_end': 2641L,
-                                'selection_start': 2641L,
+                                'sel-line': 69L,
+                                'sel-line-start': 3068L,
+                                'selection_end': 3085L,
+                                'selection_start': 3068L,
                                 'zoom': 0L}),
                               (loc('../../../config/logging_service.cfg'),
Index: trunk/src/python/unifiedlogger/activitylog_watcher.py
===================================================================
--- trunk/src/python/unifiedlogger/activitylog_watcher.py	(revision 513)
+++ trunk/src/python/unifiedlogger/activitylog_watcher.py	(revision 549)
@@ -69,5 +69,5 @@
         code = item[4].replace(',','')
         msg = item[5].replace(',','')
-        desiredFields = "Activity Log.,"+name+"," + incident_num + " " + code+" "+msg
+        desiredFields = "Activity Log,"+name+"," + incident_num + " " + code+" "+msg
         # Append to results list
         resultList.append(desiredFields)
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
