From e21f67715cff59e285c0af5587b795008f61c9eb Mon Sep 17 00:00:00 2001 From: Louis-Philippe Huberdeau Date: Wed, 19 Jul 2017 14:12:30 -0400 Subject: [PATCH] List is not a valid input type for timings, expecting object --- lib/utils/har.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/har.py b/lib/utils/har.py index 2efb33c80..a148ea7a0 100644 --- a/lib/utils/har.py +++ b/lib/utils/har.py @@ -72,7 +72,7 @@ class Entry: "request": self.request.toDict(), "response": self.response.toDict(), "cache": {}, - "timings": [], + "timings": {}, "time": int(1000 * (self.endTime - self.startTime)), "startedDateTime": "%s%s" % (datetime.datetime.fromtimestamp(self.startTime).isoformat(), time.strftime("%z")) if self.startTime else None }