diff options
author | Harmon <Harmon758@gmail.com> | 2020-02-07 06:06:19 -0600 |
---|---|---|
committer | Sebastian Thiel <sebastian.thiel@icloud.com> | 2020-02-08 10:55:50 +0800 |
commit | cedd3321e733ee1ef19998cf4fcdb2d2bc3ccd14 (patch) | |
tree | bd7d2b7b58b3ca606009d2ae93578912a120d5e1 /git | |
parent | 913b4ad21c4a5045700de9491b0f64fab7bd00ca (diff) | |
download | gitpython-cedd3321e733ee1ef19998cf4fcdb2d2bc3ccd14.tar.gz |
Remove compat.PY3
Diffstat (limited to 'git')
-rw-r--r-- | git/compat.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/git/compat.py b/git/compat.py index 0c8ed4bb..6089cf4f 100644 --- a/git/compat.py +++ b/git/compat.py @@ -24,7 +24,6 @@ from gitdb.utils.encoding import ( ) -PY3 = sys.version_info[0] >= 3 is_win = (os.name == 'nt') is_posix = (os.name == 'posix') is_darwin = (os.name == 'darwin') |