vdirsyncer/vdirsyncer/utils.py
Markus Unterwaditzer dce98d2fed Flake8
2014-03-01 21:42:21 +01:00

16 lines
273 B
Python

# -*- coding: utf-8 -*-
'''
vdirsyncer.utils
~~~~~~~~~~~~~~~~
:copyright: (c) 2014 Markus Unterwaditzer
:license: MIT, see LICENSE for more details.
'''
import os
def expand_path(p):
p = os.path.expanduser(p)
p = os.path.abspath(p)
return p