Skip to content
Snippets Groups Projects
Commit d2aa3fd8 authored by Ladislav Lhotka's avatar Ladislav Lhotka
Browse files

Fix problem from GitHub PR #127

parent 99d2c27f
No related branches found
No related tags found
No related merge requests found
Pipeline #115015 passed
PROJECT = yangson
VERSION = 1.4.16
VERSION = 1.4.17
.PHONY = tags deps install-deps test
tags:
......
......@@ -211,7 +211,7 @@ class NotSupported(ParserException):
self.feature = feature
def __str__(self: "NotSupported") -> str:
return super().str() + ": " + str(self.feature)
return super().__str__() + ": " + str(self.feature)
class MissingModule(YangsonException):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment