diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2016-06-02 06:44:56 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2016-06-02 06:44:56 +0200 |
commit | e0b21f454ea43a5f67bc4905c641d95f8b6d96fd (patch) | |
tree | 7cd0020f7674ca84472f94a2aafadcdf9afc4ceb /git/cmd.py | |
parent | fde89f2a65c2503e5aaf44628e05079504e559a0 (diff) | |
parent | 85e78ca3d9decf8807508b41dbe5335ffb6050a7 (diff) | |
download | gitpython-e0b21f454ea43a5f67bc4905c641d95f8b6d96fd.tar.gz |
Merge pull request #460 from ddanier/autointerrupt_del_no_os_kill
Make sure os is not even partly destroyed
Diffstat (limited to 'git/cmd.py')
-rw-r--r-- | git/cmd.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -287,7 +287,7 @@ class Git(LazyMixin): return # can be that nothing really exists anymore ... - if os is None: + if os is None or os.kill is None: return # try to kill it |