Add a missing import.
authorEric S. Raymond <esr@thyrsus.com>
Sat, 31 May 2014 21:09:55 +0000 (17:09 -0400)
committerEric S. Raymond <esr@thyrsus.com>
Sat, 31 May 2014 21:09:55 +0000 (17:09 -0400)
irkerhook.py

index e5983309e5487f1314306ad39a9b4ba6c1773fd0..a7b4106cc5d035870bb72e58d0ff5503e8976b8e 100755 (executable)
@@ -39,7 +39,7 @@ default_channels = "irc://chat.freenode.net/#commits"
 
 version = "2.7"
 
-import os, sys, commands, socket, urllib, subprocess, locale, datetime
+import os, sys, commands, socket, urllib, subprocess, locale, datetime, re
 from pipes import quote as shellquote
 try:
     import simplejson as json  # Faster, also makes us Python-2.5-compatible