Skip to content

Commit faebf31

Browse files
committed
sed transfo
1 parent 5d01da6 commit faebf31

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

packages/python/chart-studio/chart_studio/exceptions.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def __str__(self):
3737
"column to Plotly before you can assign it to '{reference}'.\n"
3838
"To upload, try `plotly.plotly.grid_objs.upload` or "
3939
"`plotly.plotly.grid_objs.append_column`.\n"
40-
"Questions? chris@plot.ly"
40+
"Questions? chris@plotly.com"
4141
)
4242

4343
NON_UNIQUE_COLUMN_MESSAGE = (
@@ -65,7 +65,7 @@ def __init__(self):
6565
">>> import plotly.tools as tls\n"
6666
">>> tls.set_credentials_file(username='username', "
6767
"api_key='api-key')\n\n"
68-
"For more help, see https://plot.ly/python.\n"
68+
"For more help, see https://plotly.com/python.\n"
6969
)
7070
super(PlotlyLocalCredentialsError, self).__init__(message)
7171

packages/python/chart-studio/chart_studio/tools.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def ensure_local_plotly_files():
7373
"local configuration files. No problem though! You'll "
7474
"just have to sign-in using 'plotly.plotly.sign_in()'. "
7575
"For help with that: 'help(plotly.plotly.sign_in)'."
76-
"\nQuestions? Visit https://support.plot.ly"
76+
"\nQuestions? Visit https://support.plotly.com"
7777
)
7878

7979

@@ -155,9 +155,9 @@ def set_config_file(
155155
):
156156
"""Set the keyword-value pairs in `~/.plotly/.config`.
157157
158-
:param (str) plotly_domain: ex - https://plot.ly
159-
:param (str) plotly_streaming_domain: ex - stream.plot.ly
160-
:param (str) plotly_api_domain: ex - https://api.plot.ly
158+
:param (str) plotly_domain: ex - https://plotly.com
159+
:param (str) plotly_streaming_domain: ex - stream.plotly.com
160+
:param (str) plotly_api_domain: ex - https://api.plotly.com
161161
:param (bool) plotly_ssl_verification: True = verify, False = don't verify
162162
:param (bool) plotly_proxy_authorization: True = use plotly proxy auth creds
163163
:param (bool) world_readable: True = public, False = private
@@ -386,7 +386,7 @@ def embed(file_owner_or_url, file_id=None, width="100%", height=525):
386386
get_config_defaults()["plotly_domain"]
387387
!= session.get_session_config()["plotly_domain"]
388388
):
389-
feedback_contact = "Visit support.plot.ly"
389+
feedback_contact = "Visit support.plotly.com"
390390
else:
391391

392392
# different domain likely means enterprise

0 commit comments

Comments
 (0)