From 42ebb04605cb98599d89c8c3542b84b8bfb98c27 Mon Sep 17 00:00:00 2001 From: Jakub Wilk Date: Thu, 9 Feb 2017 12:14:54 +0100 Subject: [PATCH] [python] fix name error in Fko.errstr() --- python/fko.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/fko.py b/python/fko.py index e6a5255b..35aceef6 100644 --- a/python/fko.py +++ b/python/fko.py @@ -883,7 +883,7 @@ def errstr(self, val): """Returns the descriptive error message string for the given error code value. """ - return _fko.errstr(code) + return _fko.errstr(val) # FKO type lookup functions.