aboutsummaryrefslogtreecommitdiff
path: root/tasks/_compat_shutil.py
blob: 69f3498cc89985adb2b66995cfd1b251469dd947 (plain)
1
2
3
4
5
6
7
8
# -*- coding: UTF-8 -*-
# pylint: disable=unused-import
# PYTHON VERSION COMPATIBILITY HELPER

try:
    from shutil import which    # -- SINCE: Python 3.3
except ImportError:
    from backports.shutil_which import which