# HG changeset patch # User Martin von Zweigbergk # Date 1502778411 25200 # Node ID 5d286eb7009fde5d070bba656ff4e98e45377896 # Parent 42ad7cc645a41f7091359abe81496bb008350288 commit: move dirstateguard creation out of try-block This is just a simple refactoring to make the next patch simpler. If the dirstateguard constructor raises an exception, the finally-block won't do anything anyway, so this is functionally equivalent (and there is no except-block). Differential Revision: https://phab.mercurial-scm.org/D405 diff -r 42ad7cc645a4 -r 5d286eb7009f mercurial/cmdutil.py --- a/mercurial/cmdutil.py Wed Aug 16 00:25:20 2017 +0530 +++ b/mercurial/cmdutil.py Mon Aug 14 23:26:51 2017 -0700 @@ -2998,9 +2998,10 @@ dsguard = None # extract addremove carefully -- this function can be called from a command # that doesn't support addremove + if opts.get('addremove'): + dsguard = dirstateguard.dirstateguard(repo, 'commit') try: - if opts.get('addremove'): - dsguard = dirstateguard.dirstateguard(repo, 'commit') + if dsguard: if scmutil.addremove(repo, matcher, "", opts) != 0: raise error.Abort( _("failed to mark all new/missing files as added/removed"))