summaryrefslogtreecommitdiff
path: root/pysnmp/carrier/twisted/dgram/unix.py
diff options
context:
space:
mode:
Diffstat (limited to 'pysnmp/carrier/twisted/dgram/unix.py')
-rw-r--r--pysnmp/carrier/twisted/dgram/unix.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pysnmp/carrier/twisted/dgram/unix.py b/pysnmp/carrier/twisted/dgram/unix.py
index dd590b0a..2e9f9db2 100644
--- a/pysnmp/carrier/twisted/dgram/unix.py
+++ b/pysnmp/carrier/twisted/dgram/unix.py
@@ -13,7 +13,7 @@ class UnixTwistedTransport(DgramTwistedTransport):
addressType = UnixTransportAddress
# AbstractTwistedTransport API
-
+
def openClientMode(self, iface=''):
try:
self._lport = reactor.connectUNIXDatagram(iface, self)
@@ -26,7 +26,7 @@ class UnixTwistedTransport(DgramTwistedTransport):
self._lport = reactor.listenUNIXDatagram(iface, self)
except Exception:
raise error.CarrierError(sys.exc_info()[1])
-
+
return self
def closeTransport(self):