##// END OF EJS Templates
resolve: use early continue and deindent
Gregory Szorc -
r21262:edac098e default
parent child Browse files
Show More
@@ -4931,7 +4931,9 b' def resolve(ui, repo, *pats, **opts):'
4931 4931 ret = 0
4932 4932
4933 4933 for f in ms:
4934 if m(f):
4934 if not m(f):
4935 continue
4936
4935 4937 if show:
4936 4938 if nostatus:
4937 4939 ui.write("%s\n" % f)
General Comments 0
You need to be logged in to leave comments. Login now