diff options
author | xarx00 <xarx@sms.cz> | 2019-04-06 01:35:46 +0200 |
---|---|---|
committer | xarx00 <xarx@sms.cz> | 2019-04-06 01:35:46 +0200 |
commit | a77eab2b5668cd65a3230f653f19ee00c34789bf (patch) | |
tree | 7f37f1d9be395ec6386e379096be20b6902cfdbc /git/repo/base.py | |
parent | a6f596d7f46cb13a3d87ff501c844c461c0a3b0a (diff) | |
download | gitpython-a77eab2b5668cd65a3230f653f19ee00c34789bf.tar.gz |
builtins module is part of the future package
Diffstat (limited to 'git/repo/base.py')
-rw-r--r-- | git/repo/base.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |