[tor-commits] [bridgedb/develop] Add missing super() call in BridgeBase.__init__().

isis at torproject.org isis at torproject.org
Thu Feb 19 02:21:15 UTC 2015


commit e81580aa7abd5dd4ba246860489c957ccc903027
Author: Isis Lovecruft <isis at torproject.org>
Date:   Sat Feb 14 03:07:56 2015 +0000

    Add missing super() call in BridgeBase.__init__().
---
 lib/bridgedb/bridges.py |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/bridgedb/bridges.py b/lib/bridgedb/bridges.py
index 54ffbe8..901baf5 100644
--- a/lib/bridgedb/bridges.py
+++ b/lib/bridgedb/bridges.py
@@ -482,6 +482,8 @@ class BridgeBase(BridgeAddressBase):
     """The base class for all bridge implementations."""
 
     def __init__(self):
+        super(BridgeBase, self).__init__()
+
         self._nickname = None
         self._orPort = None
         self.socksPort = 0  # Bridges should always have ``SOCKSPort`` and





More information about the tor-commits mailing list