Get the path separator right on windows.
It used to use: C:\Users\sforman/.joypy which worked, but ew.
This commit is contained in:
parent
c1442945a6
commit
6a94c12b9b
|
|
@ -7,7 +7,7 @@ from dulwich.repo import Repo
|
|||
|
||||
|
||||
COMMITTER = 'Joy <auto-commit@example.com>'
|
||||
DEFAULT_JOY_HOME = '~/.joypy'
|
||||
DEFAULT_JOY_HOME = expanduser(join('~', '.joypy'))
|
||||
|
||||
|
||||
def home_dir(path):
|
||||
|
|
|
|||
Loading…
Reference in New Issue