show milliseconds when displaying draft/delete
event
This commit is contained in:
parent
c6d913e218
commit
7f434e5e17
1 changed files with 2 additions and 1 deletions
|
@ -12,7 +12,8 @@ class Module(ModuleManager.BaseModule):
|
||||||
if line:
|
if line:
|
||||||
line.deleted = True
|
line.deleted = True
|
||||||
|
|
||||||
timestamp = utils.datetime.datetime_human(line.timestamp)
|
timestamp = utils.datetime.datetime_human(line.timestamp,
|
||||||
|
timespec=utils.datetime.TimeSpec.MILLISECOND)
|
||||||
minimal = "{NICK} deleted line from %s (%s)" % (
|
minimal = "{NICK} deleted line from %s (%s)" % (
|
||||||
timestamp, line.message)
|
timestamp, line.message)
|
||||||
line = "- %s" % minimal
|
line = "- %s" % minimal
|
||||||
|
|
Loading…
Reference in a new issue