Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/chatbox.py
diff options
context:
space:
mode:
Diffstat (limited to 'chatbox.py')
-rw-r--r--chatbox.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/chatbox.py b/chatbox.py
index a2fbbd0..671ba09 100644
--- a/chatbox.py
+++ b/chatbox.py
@@ -167,7 +167,7 @@ class ChatBox(hippo.CanvasScrollbars):
if status_message:
self._last_msg_sender = None
- match = URL_REGEXP.search(text)
+ match = URL_REGEXP.match(text)
while match:
# there is a URL in the text
starttext = text[:match.start()]