##// END OF EJS Templates
debugcomplete: don't list deprecated options
Matt Mackall -
r10958:021d5ac3 default
parent child Browse files
Show More
@@ -802,6 +802,8 b" def debugcomplete(ui, cmd='', **opts):"
802 otables.append(entry[1])
802 otables.append(entry[1])
803 for t in otables:
803 for t in otables:
804 for o in t:
804 for o in t:
805 if "(DEPRECATED)" in o[3]:
806 continue
805 if o[0]:
807 if o[0]:
806 options.append('-%s' % o[0])
808 options.append('-%s' % o[0])
807 options.append('--%s' % o[1])
809 options.append('--%s' % o[1])
General Comments 0
You need to be logged in to leave comments. Login now