comparison mercurial/repair.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 b2ec79559a4b
children cfd95219102d
comparison
equal deleted inserted replaced
41075:d0c86a7447a6 41076:8ecb17b7f432
186 # are already backed up and we did not touched the markers for the 186 # are already backed up and we did not touched the markers for the
187 # saved changesets. 187 # saved changesets.
188 tmpbundlefile = backupbundle(repo, savebases, saveheads, node, 'temp', 188 tmpbundlefile = backupbundle(repo, savebases, saveheads, node, 'temp',
189 compress=False, obsolescence=False) 189 compress=False, obsolescence=False)
190 190
191 with ui.uninterruptable(): 191 with ui.uninterruptible():
192 try: 192 try:
193 with repo.transaction("strip") as tr: 193 with repo.transaction("strip") as tr:
194 # TODO this code violates the interface abstraction of the 194 # TODO this code violates the interface abstraction of the
195 # transaction and makes assumptions that file storage is 195 # transaction and makes assumptions that file storage is
196 # using append-only files. We'll need some kind of storage 196 # using append-only files. We'll need some kind of storage