##// END OF EJS Templates
py3: bytestr a bytes val to make sure we get bytechr while iterating...
Pulkit Goyal -
r39463:16c27483 default
parent child Browse files
Show More
@@ -567,7 +567,7 b' def files(ui, repo, *pats, **opts):'
567 showfiles += ([f for f in files if f not in kwfiles],
567 showfiles += ([f for f in files if f not in kwfiles],
568 [f for f in status.unknown if f not in kwunknown])
568 [f for f in status.unknown if f not in kwunknown])
569 kwlabels = 'enabled deleted enabledunknown ignored ignoredunknown'.split()
569 kwlabels = 'enabled deleted enabledunknown ignored ignoredunknown'.split()
570 kwstates = zip(kwlabels, 'K!kIi', showfiles)
570 kwstates = zip(kwlabels, pycompat.bytestr('K!kIi'), showfiles)
571 fm = ui.formatter('kwfiles', opts)
571 fm = ui.formatter('kwfiles', opts)
572 fmt = '%.0s%s\n'
572 fmt = '%.0s%s\n'
573 if opts.get('all') or ui.verbose:
573 if opts.get('all') or ui.verbose:
General Comments 0
You need to be logged in to leave comments. Login now