From ee8deced5037dc4adde17b46e8d3d93e086c6056 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Mon, 1 Sep 2003 08:46:14 +0000 Subject: [PATCH] Cosmetic; semicolon instead of comma. --- plugins/FunDB.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/FunDB.py b/plugins/FunDB.py index 429ab54ea..eb2c7f0d9 100755 --- a/plugins/FunDB.py +++ b/plugins/FunDB.py @@ -173,7 +173,7 @@ class FunDB(callbacks.Privmsg): return while counter and lenSoFar < 400: (started, ended) = map(int, cursor.fetchone()) - s = '%s, up for %s' % \ + s = '%s; up for %s' % \ (time.strftime(conf.humanTimestampFormat, time.localtime(ended)), utils.timeElapsed(ended-started))