commit db5a0d28c9706df57c9e6cdcbd04a200f38ee87c Author: Isis Lovecruft isis@torproject.org Date: Sun Jan 12 01:20:36 2014 +0000
Minor PEP8 whitespace fix in bridgedb.Bridges.BridgeRing.getBridges(). --- lib/bridgedb/Bridges.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/bridgedb/Bridges.py b/lib/bridgedb/Bridges.py index 2d9dd11..39148a5 100644 --- a/lib/bridgedb/Bridges.py +++ b/lib/bridgedb/Bridges.py @@ -857,7 +857,7 @@ class BridgeRing(BridgeHolder): :returns: A list of :class:`~bridgedb.Bridges.Bridge`s. """ forced = [] - for _,_,count,subring in self.subrings: + for _, _, count, subring in self.subrings: if len(subring) < count: count = len(subring) forced.extend(subring._getBridgeKeysAt(pos, count))