wrong superclass constructor call

pull/36/head
Ilya Etingof 2016-12-22 01:23:49 +01:00
parent 631b774c65
commit 823c244db6
2 changed files with 3 additions and 2 deletions

View File

@ -23,7 +23,8 @@ Github `repo <https://github.com/etingof/pysnmp>`_
present (e.g. py2exe/cx_freeze environments).
- Fix broken 3DES key localization and encryption procedures.
- Updated IP address for demo.snmplabs.com in examples.
- Missing index added to bundled RFC1213::atEntry MIB table
- Missing index added to bundled RFC1213::atEntry MIB table.
- Twisted intergation made Python3 compatible.
Revision 4.3.2, released 2016-02-12
-----------------------------------

View File

@ -21,4 +21,4 @@ class AbstractTwistedTransport(AbstractTransport):
def __init__(self, sock=None, sockMap=None):
self._writeQ = []
# DgramTwistedTransport.__init__(self)
AbstractTransport.__init__(self)