diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2011-01-12 17:30:11 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2011-01-12 17:45:33 +0100 |
commit | b4b50e7348815402634b6b559b48191dba00a751 (patch) | |
tree | 4b786e80409d08c26c98289dc1de20b6b3136d55 /git/cmd.py | |
parent | 460cafb81f86361536077b3b6432237c6ae3d698 (diff) | |
download | gitpython-b4b50e7348815402634b6b559b48191dba00a751.tar.gz |
OSX Signal handling: removed previous hack to fix it somehow using sleep - the error was caused by PySide which, when instantiating a QApplication, changed the signal handlers to interrupt, instead of retry operating system calls, which caused git-python to fail subsequently. signal.siginterrupt can be used to fix this behaviour after an QApplication was instatiated.
Diffstat (limited to 'git/cmd.py')
-rw-r--r-- | git/cmd.py | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -87,7 +87,6 @@ class Git(object): """Wait for the process and return its status code. :raise GitCommandError: if the return status is not 0""" - sleep_on_gui_present_osx_crashfix() status = self.proc.wait() if status != 0: raise GitCommandError(self.args, status, self.proc.stderr.read()) |