From 677960ae9df7246260b934b95d55daff01b6358b Mon Sep 17 00:00:00 2001 From: Christopher Smith <409791+chris-x86-64@users.noreply.github.com> Date: Fri, 25 Jul 2025 21:20:01 +0900 Subject: [PATCH] fix(http_client): :pencil2: Fix support email address Correct support email address in some error messages --- payjp/http_client.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/payjp/http_client.py b/payjp/http_client.py index 6044e99..c5f4ba2 100644 --- a/payjp/http_client.py +++ b/payjp/http_client.py @@ -55,7 +55,7 @@ def _handle_request_error(self, e): msg = ( "Unexpected error communicating with Payjp. " "If this problem persists, let us know at " - "support@payjp.com." + "support@pay.jp." ) err = "%s: %s" % (type(e).__name__, str(e)) else: @@ -63,7 +63,7 @@ def _handle_request_error(self, e): "Unexpected error communicating with Payjp. " "It looks like there's probably a configuration " "issue locally. If this problem persists, let us " - "know at support@payjp.com." + "know at support@pay.jp." ) err = "A %s was raised" % (type(e).__name__,) if str(e):