From 64451b05095ae2460c2d81091479ee21382d162f Mon Sep 17 00:00:00 2001 From: qth2hi Date: Thu, 11 Apr 2024 15:24:16 +0200 Subject: [PATCH] tiny typo --- JsonPreprocessor/CJsonPreprocessor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/JsonPreprocessor/CJsonPreprocessor.py b/JsonPreprocessor/CJsonPreprocessor.py index fc1c63c4..2cf3f79b 100644 --- a/JsonPreprocessor/CJsonPreprocessor.py +++ b/JsonPreprocessor/CJsonPreprocessor.py @@ -1320,9 +1320,9 @@ def __handleLastElement(sInput : str) -> str: failedJsonDoc = self.__getFailedJsonDoc(jsonDecodeError=error) jsonException = "not defined" if failedJsonDoc is None: - jsonException = f"${error}\nIn file: '{jFile}'" + jsonException = f"{error}\nIn file: '{jFile}'" else: - jsonException = f"${error}\nNearby: '{failedJsonDoc}'\nIn file: '{jFile}'" + jsonException = f"{error}\nNearby: '{failedJsonDoc}'\nIn file: '{jFile}'" raise Exception(jsonException) self.__checkDotInParamName(oJson) __checkKeynameFormat(oJson)