summaryrefslogtreecommitdiff
path: root/pysnmp
diff options
context:
space:
mode:
authorIlya Etingof <etingof@gmail.com>2018-10-17 23:28:26 +0200
committerIlya Etingof <etingof@gmail.com>2018-10-17 23:28:26 +0200
commit40cfd938c4529043ed3da00b464fc71fc8fd00b3 (patch)
tree69867158449832456063fdd870c99ab88f1ea50a /pysnmp
parent534a5bb8108013c59706c4fb6d195aa332af5e13 (diff)
downloadpysnmp-git-40cfd938c4529043ed3da00b464fc71fc8fd00b3.tar.gz
Fix typos
Diffstat (limited to 'pysnmp')
-rw-r--r--pysnmp/carrier/asyncore/dgram/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pysnmp/carrier/asyncore/dgram/base.py b/pysnmp/carrier/asyncore/dgram/base.py
index 6524b8bb..cff98636 100644
--- a/pysnmp/carrier/asyncore/dgram/base.py
+++ b/pysnmp/carrier/asyncore/dgram/base.py
@@ -99,7 +99,7 @@ class DgramSocketTransport(AbstractSocketTransport):
except socket.error:
raise error.CarrierError('setsockopt() for IP_TRANSPARENT failed: %s' % sys.exc_info()[1])
except OSError:
- raise error.CarrierError('IP_TRANSPARENT socket option requires superusre previleges')
+ raise error.CarrierError('IP_TRANSPARENT socket option requires superuser priveleges')
debug.logger & debug.flagIO and debug.logger('enableTransparent: %s option IP_TRANSPARENT on socket %s' % (flag and "enabled" or "disabled", self.socket.fileno()))
return self