Typo in comment.
This commit is contained in:
parent
fd77dc579e
commit
63c7241aec
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ def _handle_signal(signal_number, frame): # pragma: no cover
|
||||||
def configure_signals(): # pragma: no cover
|
def configure_signals(): # pragma: no cover
|
||||||
'''
|
'''
|
||||||
Configure borgmatic's signal handlers to pass relevant signals through to any child processes
|
Configure borgmatic's signal handlers to pass relevant signals through to any child processes
|
||||||
like Borg. No that SIGINT gets passed through already even without these changes.
|
like Borg. Note that SIGINT gets passed through even without these changes.
|
||||||
'''
|
'''
|
||||||
for signal_number in (signal.SIGHUP, signal.SIGTERM, signal.SIGUSR1, signal.SIGUSR2):
|
for signal_number in (signal.SIGHUP, signal.SIGTERM, signal.SIGUSR1, signal.SIGUSR2):
|
||||||
signal.signal(signal_number, _handle_signal)
|
signal.signal(signal_number, _handle_signal)
|
||||||
|
|
Loading…
Reference in a new issue