diff --git a/bin/dnet/model.py b/bin/dnet/model.py index 8cec90fb1a82..17c213ff150a 100644 --- a/bin/dnet/model.py +++ b/bin/dnet/model.py @@ -98,7 +98,7 @@ def handle_event(self, event): addr = chan.get("addr") t = (dt.datetime .fromtimestamp(int(nano)/1000000000) - .strftime('%Y-%m-%d %H:%M:%S.%f')) + .strftime('%H:%M:%S')) self.info.update_msg(addr, (t, event, cmd)) case "recv": nano = info.get("time") @@ -107,7 +107,7 @@ def handle_event(self, event): addr = chan.get("addr") t = (dt.datetime .fromtimestamp(int(nano)/1000000000) - .strftime('%Y-%m-%d %H:%M:%S.%f')) + .strftime('%H:%M:%S')) self.info.update_msg(addr, (t, event, cmd)) case "inbound_connected": addr = info["addr"]