From eba4242ed21aee7cedeeaca69e984b1e3911f0eb Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Sat, 31 May 2014 17:09:55 -0400 Subject: [PATCH] Add a missing import. --- irkerhook.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irkerhook.py b/irkerhook.py index e598330..a7b4106 100755 --- a/irkerhook.py +++ b/irkerhook.py @@ -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 -- 2.26.2