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

Merge pull request #94 from SirAiedail/feature/jinja-helper-expand-path

Expand variables in jinja helper path
This commit is contained in:
deadc0de
2019-03-03 14:33:48 +01:00
committed by GitHub

View File

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