From 5afec288f5745bff3614686215595db0ad843969 Mon Sep 17 00:00:00 2001 From: Amjith Ramanujam Date: Mon, 5 Sep 2016 20:25:11 -0700 Subject: [PATCH] Remove cumulative addition of timing data. --- pgcli/main.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pgcli/main.py b/pgcli/main.py index 4d29e0aa..2c8a6517 100755 --- a/pgcli/main.py +++ b/pgcli/main.py @@ -583,8 +583,7 @@ class PGCli(object): self.pgspecial.expanded_output, max_width) output.extend(formatted) - end = time() - total += end - start + total = time() - start # Keep track of whether any of the queries are mutating or changing # the database