commit cbe9c2d44d4e3cd1ff37c9c97b129acad9e5739f Author: Isis Lovecruft isis@torproject.org Date: Tue May 12 08:32:32 2015 +0000
Remove unused variable in bridgedb.Storage.Database.getAllBridgeHistory(). --- lib/bridgedb/Storage.py | 1 - 1 file changed, 1 deletion(-)
diff --git a/lib/bridgedb/Storage.py b/lib/bridgedb/Storage.py index 334aadb..ea9d26b 100644 --- a/lib/bridgedb/Storage.py +++ b/lib/bridgedb/Storage.py @@ -288,7 +288,6 @@ class Database(object): cur = self._cur v = cur.execute("SELECT * FROM BridgeHistory") if v is None: return - fp = {} for h in v: yield BridgeHistory(h[0],IPAddress(h[1]),h[2],h[3],h[4],h[5],h[6],h[7],h[8],h[9],h[10])