diff options
author | xarx00 <xarx@sms.cz> | 2019-04-05 23:42:55 +0200 |
---|---|---|
committer | xarx00 <xarx@sms.cz> | 2019-04-05 23:42:55 +0200 |
commit | 3953d71374994a00c7ef756040d2c77090f07bb4 (patch) | |
tree | 77fca3f34a3ec4b9bbbc1d48ae638ab557287460 /git/repo/base.py | |
parent | 1f66e25c25cde2423917ee18c4704fff83b837d1 (diff) | |
download | gitpython-3953d71374994a00c7ef756040d2c77090f07bb4.tar.gz |
added support for non-ascii directories and file names
Diffstat (limited to 'git/repo/base.py')
-rw-r--r-- | git/repo/base.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/git/repo/base.py b/git/repo/base.py index 58f11e51..993e091d 100644 --- a/git/repo/base.py +++ b/git/repo/base.py @@ -4,6 +4,7 @@ # This module is part of GitPython and is released under # the BSD License: http://www.opensource.org/licenses/bsd-license.php +from builtins import str from collections import namedtuple import logging import os |