comparison hgext/narrow/narrowbundle2.py @ 41076: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 109a267acc1e
children 44a51c1c8e17
comparison
equal deleted inserted replaced
41075:d0c86a7447a6 41076:8ecb17b7f432
186 pass 186 pass
187 localrepo.localrepository._bookmarks.set(repo, dummybmstore()) 187 localrepo.localrepository._bookmarks.set(repo, dummybmstore())
188 chgrpfile = repair.strip(op.ui, repo, list(clkills), backup=True, 188 chgrpfile = repair.strip(op.ui, repo, list(clkills), backup=True,
189 topic='widen') 189 topic='widen')
190 if chgrpfile: 190 if chgrpfile:
191 op._widen_uninterr = repo.ui.uninterruptable() 191 op._widen_uninterr = repo.ui.uninterruptible()
192 op._widen_uninterr.__enter__() 192 op._widen_uninterr.__enter__()
193 # presence of _widen_bundle attribute activates widen handler later 193 # presence of _widen_bundle attribute activates widen handler later
194 op._widen_bundle = chgrpfile 194 op._widen_bundle = chgrpfile
195 # Set the new narrowspec if we're widening. The setnewnarrowpats() method 195 # Set the new narrowspec if we're widening. The setnewnarrowpats() method
196 # will currently always be there when using the core+narrowhg server, but 196 # will currently always be there when using the core+narrowhg server, but