From 3bb4d3797f8a553a11df8727a422bdfb3b8121e8 Mon Sep 17 00:00:00 2001 From: Jake Ichikawa Date: Mon, 25 Nov 2024 13:44:10 -0800 Subject: [PATCH] Improve not allowed string. --- tabpy/tabpy_tools/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tabpy/tabpy_tools/client.py b/tabpy/tabpy_tools/client.py index 020c5d4e..6582eefa 100644 --- a/tabpy/tabpy_tools/client.py +++ b/tabpy/tabpy_tools/client.py @@ -527,7 +527,7 @@ def _evaluate_remote_script(self, remote_script): msg = response.text.replace('null', 'Success') if "Ad-hoc scripts have been disabled" in msg: - msg += "\n[Remote TabPy client not allowed.]" + msg += "\n[Deployment to remote tabpy client not allowed.]" status_message = (f"{response.status_code} - {msg}\n") print(status_message)