summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorxarx00 <xarx@sms.cz>2019-04-06 01:15:49 +0200
committerxarx00 <xarx@sms.cz>2019-04-06 01:15:49 +0200
commita6f596d7f46cb13a3d87ff501c844c461c0a3b0a (patch)
treecb0068e7fa6cbf2d4156f4fab15155385d6bdd66
parent3953d71374994a00c7ef756040d2c77090f07bb4 (diff)
downloadgitpython-a6f596d7f46cb13a3d87ff501c844c461c0a3b0a.tar.gz
Fix for: No module named builtins (CI tests error)
-rw-r--r--git/repo/base.py2
1 files changed, 1 insertions, 1 deletions
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