From 0a0ab989530636b4ff7a13846b228abe488d8013 Mon Sep 17 00:00:00 2001 From: chb2mn Date: Thu, 26 Oct 2023 20:01:02 +0000 Subject: [PATCH] spacing changes --- plaso/parsers/sqlite_plugins/firefox_downloads.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plaso/parsers/sqlite_plugins/firefox_downloads.py b/plaso/parsers/sqlite_plugins/firefox_downloads.py index cba81dd012..3834a92e63 100644 --- a/plaso/parsers/sqlite_plugins/firefox_downloads.py +++ b/plaso/parsers/sqlite_plugins/firefox_downloads.py @@ -143,7 +143,7 @@ class Firefox118DownloadsPlugin(interface.SQLitePlugin): 'origin_id INTEGER REFERENCES moz_origins(id), ' 'recalc_frecency INTEGER NOT NULL DEFAULT 0, alt_frecency INTEGER, ' 'recalc_alt_frecency INTEGER NOT NULL DEFAULT 0)'} - ] + ] def _GetDateTimeRowValue(self, query_hash, row, value_name): """Retrieves a date and time value from the row. @@ -176,7 +176,7 @@ def ParseDownloadsRow( """ query_hash = hash(query) - content = self._GetRowValue(query_hash,row,'content') + content = self._GetRowValue(query_hash, row, 'content') content_data = json.loads(content) event_data = Firefox118DownloadEventData()