Merge pull request #40 from avidal/patch-1

Fixed path lowercasing bug in logging plugin.
This commit is contained in:
rmmh 2011-07-22 20:16:54 -07:00
commit d5e192de10
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ irc_color_re = re.compile(r'(\x03(\d+,\d+|\d)|[\x0f\x02\x16\x1f])')
def get_log_filename(dir, server, chan):
return os.path.join(dir, 'log', gmtime('%Y'), server,
gmtime('%%s.%m-%d.log') % chan).lower()
(gmtime('%%s.%m-%d.log') % chan).lower())
def gmtime(format):