# HG changeset patch # User Martin von Zweigbergk # Date 1571465927 25200 # Node ID 95d0532ad171250d0967c7f61f365a1e3fb37c59 # Parent 7f4d58c21aec0e567fd5efa5561faaff7cafe197 status: move initialization closer together The default initialization happened long before it needed to happen. Differential Revision: https://phab.mercurial-scm.org/D7145 diff -r 7f4d58c21aec -r 95d0532ad171 mercurial/commands.py --- a/mercurial/commands.py Sat Oct 19 00:15:41 2019 -0700 +++ b/mercurial/commands.py Fri Oct 18 23:18:47 2019 -0700 @@ -6817,7 +6817,6 @@ end = b'\0' else: end = b'\n' - copy = {} states = b'modified added removed deleted unknown ignored clean'.split() show = [k for k in states if opts.get(k)] if opts.get(b'all'): @@ -6856,6 +6855,7 @@ changestates = zip(states, pycompat.iterbytestr(b'MAR!?IC'), stat) + copy = {} if ( opts.get(b'all') or opts.get(b'copies')