##// END OF EJS Templates
with: use context manager for wlock in shelve createcmd
Bryan O'Sullivan -
r27834:476f5305 default
parent child Browse files
Show More
@@ -224,12 +224,9 b' def _aborttransaction(repo):'
224 224
225 225 def createcmd(ui, repo, pats, opts):
226 226 """subcommand that creates a new shelve"""
227 wlock = repo.wlock()
228 try:
227 with repo.wlock():
229 228 cmdutil.checkunfinished(repo)
230 229 return _docreatecmd(ui, repo, pats, opts)
231 finally:
232 lockmod.release(wlock)
233 230
234 231 def _docreatecmd(ui, repo, pats, opts):
235 232 def mutableancestors(ctx):
General Comments 0
You need to be logged in to leave comments. Login now