diff --git a/wa/utils/android.py b/wa/utils/android.py
index 454772c3..9a0c4c49 100644
--- a/wa/utils/android.py
+++ b/wa/utils/android.py
@@ -44,7 +44,7 @@ class LogcatParser(object):
 
     def parse_line(self, line):
         line = line.strip()
-        if not line or line.startswith('-') or ':' not in line:
+        if not line or line.startswith('-') or ': ' not in line:
             return None
 
         metadata, message = line.split(': ', 1)