浏览代码

Typo in comment.

Dan 8 年之前
父节点
当前提交
63c7241aec
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      borgmatic/signals.py

+ 1 - 1
borgmatic/signals.py

@@ -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)