1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-09 12:19:17 +00:00

Expand variables in jinja helper path

This commit is contained in:
Lucas Schwiderski
2019-03-03 11:14:25 +01:00
parent 5cd2616b17
commit 0db89133d8

View File

@@ -10,4 +10,4 @@ import os
def exists(path):
"""return true when path exists"""
return os.path.exists(path)
return os.path.exists(os.path.expandvars(path))