Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions payjp/http_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,15 @@ 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:
msg = (
"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):
Expand Down