From 3953d71374994a00c7ef756040d2c77090f07bb4 Mon Sep 17 00:00:00 2001 From: xarx00 Date: Fri, 5 Apr 2019 23:42:55 +0200 Subject: added support for non-ascii directories and file names --- git/repo/base.py | 1 + 1 file changed, 1 insertion(+) (limited to 'git/repo/base.py') 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 -- cgit v1.2.1 From a6f596d7f46cb13a3d87ff501c844c461c0a3b0a Mon Sep 17 00:00:00 2001 From: xarx00 Date: Sat, 6 Apr 2019 01:15:49 +0200 Subject: Fix for: No module named builtins (CI tests error) --- git/repo/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git/repo/base.py') diff --git a/git/repo/base.py b/git/repo/base.py index 993e091d..b8ee8357 100644 --- a/git/repo/base.py +++ b/git/repo/base.py @@ -4,7 +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 __builtins__ import str from collections import namedtuple import logging import os -- cgit v1.2.1 From a77eab2b5668cd65a3230f653f19ee00c34789bf Mon Sep 17 00:00:00 2001 From: xarx00 Date: Sat, 6 Apr 2019 01:35:46 +0200 Subject: builtins module is part of the future package --- git/repo/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'git/repo/base.py') diff --git a/git/repo/base.py b/git/repo/base.py index b8ee8357..993e091d 100644 --- a/git/repo/base.py +++ b/git/repo/base.py @@ -4,7 +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 builtins import str from collections import namedtuple import logging import os -- cgit v1.2.1