summaryrefslogtreecommitdiff
path: root/pysnmp/nextid.py
diff options
context:
space:
mode:
authorIlya Etingof <etingof@gmail.com>2016-06-12 14:07:24 +0200
committerIlya Etingof <etingof@gmail.com>2016-06-12 14:07:24 +0200
commit91a1292067bfda55320f188eb1c8cce4af7a3266 (patch)
treec73fd39bf0eaf76207efdc6ed4ed191e50f31bf9 /pysnmp/nextid.py
parent912517cb2d79fddc512a1304c18a9b20cb20cf80 (diff)
downloadpysnmp-git-91a1292067bfda55320f188eb1c8cce4af7a3266.tar.gz
converted to new-style classes
Diffstat (limited to 'pysnmp/nextid.py')
-rw-r--r--pysnmp/nextid.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pysnmp/nextid.py b/pysnmp/nextid.py
index cd2fe20b..775106d5 100644
--- a/pysnmp/nextid.py
+++ b/pysnmp/nextid.py
@@ -9,7 +9,7 @@ import random
random.seed()
-class Integer:
+class Integer(object):
"""Return a next value in a reasonably MT-safe manner"""
def __init__(self, maximum, increment=256):