Closed rao-aneesh closed 8 months ago
json.dumps causes an issue with escape characters. A CLI command like "banner login ^TEST\nBANNER\nLOGIN^" gets converted to "banner login ^TEST\\nBANNER\\nLOGIN^". This fixes that issue.
"banner login ^TEST\nBANNER\nLOGIN^"
"banner login ^TEST\\nBANNER\\nLOGIN^"
@akarneliuk Can you look into this please?
@AscendedEntity looks good, thanks. I will be looking for releasing over the weekend.
json.dumps causes an issue with escape characters. A CLI command like
"banner login ^TEST\nBANNER\nLOGIN^"
gets converted to"banner login ^TEST\\nBANNER\\nLOGIN^"
. This fixes that issue.