8000 fix win7 path issue due to path join problem. · emile2016/sae-python-dev-guide@6886322 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6886322

Browse files
committed
fix win7 path issue due to path join problem.
1 parent 59f2791 commit 6886322

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dev_server/saecloud

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ from sae.util import search_file_bottom_up
2020
UPLOAD_SERVER = 'http://upload.sae.sina.com.cn'
2121
DEPLOY_SERVER = 'http://deploy.sae.sina.com.cn'
2222
SVN_SERVER = 'https://svn.sinaapp.com/'
23-
LOCAL_CACHE_DIR = os.path.expanduser('~/.saecloud')
23+
LOCAL_CACHE_DIR = os.path.join(os.path.expanduser('~'),'.saecloud')
2424

2525
VERSION = '0.0.1'
2626
verbose = False

0 commit comments

Comments
 (0)
0