From 22c41367ec9ceacee335e486a7d5fb4a95c9eeb7 Mon Sep 17 00:00:00 2001 From: Krasimir Angelov Date: Fri, 25 Aug 2023 18:09:16 +0200 Subject: [PATCH] fix typo --- src/runtime/python/expr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime/python/expr.c b/src/runtime/python/expr.c index 0caeebceb..bbcf512e9 100644 --- a/src/runtime/python/expr.c +++ b/src/runtime/python/expr.c @@ -865,7 +865,7 @@ ExprApp_init(ExprAppObject *self, PyObject *args, PyObject *kwds) return 0; } - PyErr_SetString(PyExc_TypeError, "The arguments must two expressions"); + PyErr_SetString(PyExc_TypeError, "The arguments must be two expressions"); return -1; }