diff --git a/wlauto/utils/types.py b/wlauto/utils/types.py index 725b22d8..c3fd571a 100644 --- a/wlauto/utils/types.py +++ b/wlauto/utils/types.py @@ -83,6 +83,9 @@ def numeric(value): return ivalue return fvalue +def file_path(value): + """Handles expansion of paths containing '~'""" + return os.path.expanduser(value) def list_of_strs(value): """