hgext3rd/__init__.py
author Navaneeth Suresh <navaneeths1998@gmail.com>
Sat, 26 Jan 2019 13:14:21 +0530
changeset 41423 4a33a6bf2b52
parent 28541 4b81487a01d4
child 43076 2372284d9457
permissions -rw-r--r--
diffstat: support filenames with whitespaces on renames This is a follow-up patch to D5628. `line.split()` cannot get filenames with whitespaces as mentioned by @yuja. This patch replaces `split()` method with `slice`. Corresponding tests were also added. Differential Revision: https://phab.mercurial-scm.org/D5709

# name space package to host third party extensions
from __future__ import absolute_import
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)