From: Eric S. Raymond Date: Sat, 31 May 2014 21:09:55 +0000 (-0400) Subject: Add a missing import. X-Git-Tag: 2.9~4 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=eba4242ed21aee7cedeeaca69e984b1e3911f0eb;p=irker.git Add a missing import. --- 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