summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlya Etingof <etingof@gmail.com>2016-12-22 01:23:49 +0100
committerIlya Etingof <etingof@gmail.com>2016-12-22 01:23:49 +0100
commit823c244db653336b1b96ea1848a34701e0a1a326 (patch)
tree52a9850d6ad5ed0cdab21766f6a9c4672bc071de
parent631b774c65df55e0e9e94fe2fc2444b071f6bfcd (diff)
downloadpysnmp-git-823c244db653336b1b96ea1848a34701e0a1a326.tar.gz
wrong superclass constructor call
-rw-r--r--CHANGES.txt3
-rw-r--r--pysnmp/carrier/twisted/base.py2
2 files changed, 3 insertions, 2 deletions
diff --git a/CHANGES.txt b/CHANGES.txt
index ddca959d..f252a965 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -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
-----------------------------------
diff --git a/pysnmp/carrier/twisted/base.py b/pysnmp/carrier/twisted/base.py
index 86a01266..ee04262f 100644
--- a/pysnmp/carrier/twisted/base.py
+++ b/pysnmp/carrier/twisted/base.py
@@ -21,4 +21,4 @@ class AbstractTwistedTransport(AbstractTransport):
def __init__(self, sock=None, sockMap=None):
self._writeQ = []
-# DgramTwistedTransport.__init__(self)
+ AbstractTransport.__init__(self)