Skip to content

Commit c73c85b

Browse files
authored
Credentials fix (#74)
* updating grpcio dependency * fixes credential path bug
1 parent 94bd1a7 commit c73c85b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

btrdb/utils/credentials.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
CONFIG_DIR = ".predictivegrid"
2929
CREDENTIALS_FILENAME = "credentials.yaml"
30-
CREDENTIALS_PATH = os.path.join(os.environ["HOME"], CONFIG_DIR, CREDENTIALS_FILENAME)
30+
CREDENTIALS_PATH = os.path.join(os.path.expanduser("~"), CONFIG_DIR, CREDENTIALS_FILENAME)
3131

3232
##########################################################################
3333
## Functions

0 commit comments

Comments
 (0)