From 01e68ccc6a81ca7cc98ae0967ed1b5b922e4dd5c Mon Sep 17 00:00:00 2001 From: Nex Date: Tue, 28 Sep 2021 12:45:15 +0200 Subject: [PATCH] Fixed dict decl --- mvt/ios/modules/fs/shutdownlog.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mvt/ios/modules/fs/shutdownlog.py b/mvt/ios/modules/fs/shutdownlog.py index 062afd6..9ac7e05 100644 --- a/mvt/ios/modules/fs/shutdownlog.py +++ b/mvt/ios/modules/fs/shutdownlog.py @@ -64,11 +64,11 @@ class ShutdownLog(IOSExtraction): isodate = convert_timestamp_to_iso(timestamp) for current_process in current_processes: - self.results.append(dict( + self.results.append({ "isodate": isodate, "pid": current_process["pid"], "client": current_process["client"], - )) + }) current_processes = []