summaryrefslogtreecommitdiff
path: root/pysnmp/nextid.py
diff options
context:
space:
mode:
authorelie <elie>2008-04-28 07:59:46 +0000
committerelie <elie>2008-04-28 07:59:46 +0000
commitb70318ea0a94ef4dbb187b600a865a65b6b983e2 (patch)
tree459abefb3d37350f92771603cd7b565a344059bf /pysnmp/nextid.py
parent0a37e88041befabd2b2059bbb821fff40cf5261d (diff)
downloadpysnmp-git-b70318ea0a94ef4dbb187b600a865a65b6b983e2.tar.gz
avoid extra recursion
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 222fe0d2..256aedc0 100644
--- a/pysnmp/nextid.py
+++ b/pysnmp/nextid.py
@@ -27,4 +27,4 @@ class Integer:
if e > self.__maximum:
e = 0
self.__bank.extend(range(e, e+self.__increment))
- return self()
+ return v