Skip to content

Commit

Permalink
No need to ignore SIGWINCH anymore
Browse files Browse the repository at this point in the history
In normal mode, SIGWINCH is handled by ProgressBar.
In quiet mode, there's no SIGWINCH handler at all.
  • Loading branch information
dmach committed Jan 7, 2022
1 parent 7467153 commit 8d082fa
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions osc/babysitter.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,6 @@ def catchterm(*args):
if num:
signal.signal(num, catchterm)

# Signals which should be ignored
for sig in (signal.SIGWINCH,):
signal.signal(sig, signal.SIG_IGN)

def run(prg, argv=None):
try:
Expand Down

0 comments on commit 8d082fa

Please sign in to comment.