From 63c7241aec5c3528525a503fe6ebac5c15549148 Mon Sep 17 00:00:00 2001 From: Dan Date: Tue, 31 Oct 2017 22:21:49 -0700 Subject: [PATCH] Typo in comment. --- borgmatic/signals.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/borgmatic/signals.py b/borgmatic/signals.py index 41d913dcd..51b9272a1 100644 --- a/borgmatic/signals.py +++ b/borgmatic/signals.py @@ -12,7 +12,7 @@ def _handle_signal(signal_number, frame): # pragma: no cover def configure_signals(): # pragma: no cover ''' 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): signal.signal(signal_number, _handle_signal)