diff mercurial/utils/procutil.py @ 41079:8ecb17b7f432

procutil: correct spelling of uninterruptable -> uninterruptible Differential Revision: https://phab.mercurial-scm.org/D5488
author Kyle Lippincott <spectral@google.com>
date Fri, 28 Dec 2018 12:51:47 -0800
parents 246b61bfdc2f
children b0e3f2d7c143
line wrap: on
line diff
--- a/mercurial/utils/procutil.py	Fri Dec 28 18:14:10 2018 -0500
+++ b/mercurial/utils/procutil.py	Fri Dec 28 12:51:47 2018 -0800
@@ -437,7 +437,7 @@
             signal.signal(signal.SIGCHLD, prevhandler)
 
 @contextlib.contextmanager
-def uninterruptable(warn):
+def uninterruptible(warn):
     """Inhibit SIGINT handling on a region of code.
 
     Note that if this is called in a non-main thread, it turns into a no-op.