From ce108a31766da5725f8d0bb2c994206b9331fbb9 Mon Sep 17 00:00:00 2001 From: gry <guppy@123mail.org> Date: Wed, 12 Sep 2012 13:19:01 +0930 Subject: [PATCH] use day of month, not minutes in the date --- irc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/irc.py b/irc.py index 9fc1855..7b13eb0 100644 --- a/irc.py +++ b/irc.py @@ -338,7 +338,7 @@ class IRC(asynchat.async_chat): self.pluginManager.event("disconnect", self.config["network"]) def prnt(self, line): - print(time.strftime("%Y-%M-%d %H:%M:%S") + (" ["+self.config["network"]+"] "+line)) + print(time.strftime("%Y-%m-%d %H:%M:%S") + (" ["+self.config["network"]+"] "+line)) def sendLine(self, line): #print("'"+line+"'") -- GitLab