Skip to content

Commit

Permalink
fixed missing productRelease key
Browse files Browse the repository at this point in the history
  • Loading branch information
etingof committed Nov 11, 2017
1 parent 4a6ccc5 commit edda68f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pysmi/codegen/pysnmp.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ def genAgentCapabilities(self, data, classmode=False):
outStr += """\
if getattr(mibBuilder, 'version', (0, 0, 0)) > (4, 4, 0):
%(name)s = %(name)s%(productRelease)s
""" % dict(name=name, release=productRelease)
""" % dict(name=name, productRelease=productRelease)

if status:
outStr += """\
Expand Down

0 comments on commit edda68f

Please sign in to comment.