aboutsummaryrefslogtreecommitdiff
path: root/lib/d2/util.py
blob: 139ddc4a60741596355e2fd1aee7b4b22c53339b (plain)
1
2
3
4
5
6
7
8
import os


def expand_path(path):
    """Expand the user and shell variables in a path
    """
    path = os.path.expanduser(path)
    return os.path.expandvars(path)