##// END OF EJS Templates
dirstate: fix order of initializing nf vs f...
Siddharth Agarwal -
r24553:afc29e29 default
parent child Browse files
Show More
@@ -777,8 +777,8 b' class dirstate(object):'
777 # even though f might be a directory, we're only interested
777 # even though f might be a directory, we're only interested
778 # in comparing it to files currently in the dmap --
778 # in comparing it to files currently in the dmap --
779 # therefore normalizefile is enough
779 # therefore normalizefile is enough
780 nf = normalizefile(nd and (nd + "/" + f) or f, True, True)
780 f = d and (d + "/" + f) or f
781 f = d and (d + "/" + f) or f
781 nf = normalizefile(nd and (nd + "/" + f) or f, True, True)
782 else:
782 else:
783 nf = nd and (nd + "/" + f) or f
783 nf = nd and (nd + "/" + f) or f
784 f = nf
784 f = nf
General Comments 0
You need to be logged in to leave comments. Login now