status: move initialization closer together
The default initialization happened long before it needed to happen.
Differential Revision: https://phab.mercurial-scm.org/D7145
--- 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')