summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorjohnthagen <johnthagen@users.noreply.github.com>2016-11-02 11:40:06 -0400
committerGitHub <noreply@github.com>2016-11-02 11:40:06 -0400
commit4d476d5382531f084e21e821f6ccd2b47b3fab5b (patch)
tree60088b768094b89e35205a23e1526b3ca375dd1d /docs
parent19d0af9a0429e6169fa0370c43ccc69afe7dcb92 (diff)
downloadpysnmp-git-4d476d5382531f084e21e821f6ccd2b47b3fab5b.tar.gz
Fix function call
Not familiar with the API well enough to know if this is the correct fix or not.
Diffstat (limited to 'docs')
-rw-r--r--docs/source/docs/pysnmp-hlapi-tutorial.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/source/docs/pysnmp-hlapi-tutorial.rst b/docs/source/docs/pysnmp-hlapi-tutorial.rst
index 0ec57624..54b7441b 100644
--- a/docs/source/docs/pysnmp-hlapi-tutorial.rst
+++ b/docs/source/docs/pysnmp-hlapi-tutorial.rst
@@ -45,7 +45,7 @@ corresponding functions.
['bulkCmd', 'getCmd', 'nextCmd', 'setCmd']
>>> getCmd
<function getCmd at 0x222b330>
- >>> g = getCmd(
+ >>> g = getCmd()
Choosing SNMP protocol and credentials
--------------------------------------