diff --git a/lg.py b/lg.py
index 16266b6..59cd19f 100755
--- a/lg.py
+++ b/lg.py
@@ -39,6 +39,7 @@ def add_links(text):
line = re.sub(r'(\d+\.\d+\.\d+\.\d+)', r'\1',line)
hosts = "/".join(request.path.split("/")[2:])
line = re.sub(r'\[(\w+)\s+((|\d\d\d\d-\d\d-\d\d\s)(|\d\d:)\d\d:\d\d|\w\w\w\d\d)', r'[\1 \2' % hosts, line)
+ line = re.sub(r'(^|\s+)(([a-f\d]{0,4}:){2,10}[a-f\d]{0,4})', r'\1\2',line , re.I)
ret_text.append(line)
return "\n".join(ret_text)