diff options
author | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-10-13 15:35:51 +0200 |
---|---|---|
committer | Kostis Anagnostopoulos <ankostis@gmail.com> | 2016-10-14 17:43:17 +0200 |
commit | e6e23ed24b35c6154b4ee0da5ae51cd5688e5e67 (patch) | |
tree | 173563f1efb1686ae6ac5a0a7f870cbbddc329fd /git/test/lib/helper.py | |
parent | ba7c2a0f81f83c358ae256963da86f907ca7f13c (diff) | |
download | gitpython-e6e23ed24b35c6154b4ee0da5ae51cd5688e5e67.tar.gz |
cygwin, #533: Try to make it work with Cygwin's Git.
+ Make `Git.polish_url()` convert paths into Cygwin-friendly paths.
+ Add utility and soe TCs for funcs for detecting cygwin and converting
abs-paths to `/cygdrive/c/...`.
- Cygwin TCs failing:
- PY2: err: 14, fail: 3
- PY3: err: 13, fail: 3
Diffstat (limited to 'git/test/lib/helper.py')
-rw-r--r-- | git/test/lib/helper.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git/test/lib/helper.py b/git/test/lib/helper.py index c5a003ea..ab60562f 100644 --- a/git/test/lib/helper.py +++ b/git/test/lib/helper.py @@ -32,7 +32,7 @@ __all__ = ( 'GIT_REPO', 'GIT_DAEMON_PORT' ) -log = logging.getLogger('git.util') +log = logging.getLogger(__name__) #{ Routines |