Skip to content

Commit 4f66326

Browse files
committed
use full filenames including . now
1 parent a909d98 commit 4f66326

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

plotly/tools.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def get_credentials_file(*args, **kwargs):
177177
if 'custom_creds' in kwargs:
178178
PLOTLY_DIR = os.path.join(os.path.expanduser("~"), ".plotly")
179179
CREDENTIALS_ = os.path.join(PLOTLY_DIR,
180-
".{}".format(
180+
"{}".format(
181181
kwargs['custom_creds']))
182182
else:
183183
CREDENTIALS_ = CREDENTIALS_FILE
@@ -275,7 +275,7 @@ def get_config_file(*args, **kwargs):
275275
if 'custom_config' in kwargs:
276276
PLOTLY_DIR = os.path.join(os.path.expanduser("~"), ".plotly")
277277
CONFIG_ = os.path.join(PLOTLY_DIR,
278-
".{}".format(
278+
"{}".format(
279279
kwargs['custom_config']))
280280

281281
else:

0 commit comments

Comments
 (0)