Index: bin/stamp2json
===================================================================
--- bin/stamp2json	(revision 11)
+++ bin/stamp2json	(revision 16)
@@ -46,6 +46,9 @@
 
             else:
-                customer = info.split(' ', 1)[0]
-                action = info.split(' ', 1)[1].lstrip('- ')
+                info_items = info.split(' ', 1)
+                customer = info_items[0]
+                action = ''
+                if len(info_items) > 1:
+                    action = info_items[1].lstrip('- ')
                 end_time = time
 
