Fixed variable name (closes: #72)

This commit is contained in:
Nex 2021-07-23 18:05:51 +02:00
parent 8e099e5985
commit ba84b3c18d

View File

@ -43,10 +43,10 @@ class LocationdClients(IOSExtraction):
for ts in self.timestamps: for ts in self.timestamps:
if ts in record.keys(): if ts in record.keys():
records.append({ records.append({
"timestamp": entry[ts], "timestamp": record[ts],
"module": self.__class__.__name__, "module": self.__class__.__name__,
"event": ts, "event": ts,
"data": f"{ts} from {entry['package']}" "data": f"{ts} from {record['package']}"
}) })
return records return records