##// END OF EJS Templates
py3: make sure using bytes status char rather than ascii values...
Pulkit Goyal -
r31463:55df8fa1 default
parent child Browse files
Show More
@@ -4754,7 +4754,7 b' def status(ui, repo, *pats, **opts):'
4754 stat = repo.status(node1, node2, m,
4754 stat = repo.status(node1, node2, m,
4755 'ignored' in show, 'clean' in show, 'unknown' in show,
4755 'ignored' in show, 'clean' in show, 'unknown' in show,
4756 opts.get('subrepos'))
4756 opts.get('subrepos'))
4757 changestates = zip(states, 'MAR!?IC', stat)
4757 changestates = zip(states, pycompat.iterbytestr('MAR!?IC'), stat)
4758
4758
4759 if (opts.get('all') or opts.get('copies')
4759 if (opts.get('all') or opts.get('copies')
4760 or ui.configbool('ui', 'statuscopies')) and not opts.get('no_status'):
4760 or ui.configbool('ui', 'statuscopies')) and not opts.get('no_status'):
General Comments 0
You need to be logged in to leave comments. Login now