This commit is contained in:
Matt Wobensmith 2019-12-03 15:41:20 -08:00 коммит произвёл mwobensmith
Родитель af3e26508e
Коммит 83b286f70e
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -274,7 +274,7 @@ def get_working_dir():
logger.debug("Repo root: %s" % repo_root)
repo_name = os.path.basename(repo_root)
logger.debug("Repo name: %s" % repo_name)
return "%s/.%s" % (home, repo_name)
return "%s%s.%s" % (home, os.sep, repo_name)
def trim_path(path):