##// END OF EJS Templates
fix qseries -v when there are unapplied patches
Alexis S. L. Carvalho -
r3681:05d877df default
parent child Browse files
Show More
@@ -1106,7 +1106,6 b' class queue:'
1106 if not missing:
1106 if not missing:
1107 for i in xrange(start, start+length):
1107 for i in xrange(start, start+length):
1108 pfx = ''
1108 pfx = ''
1109 patch = pname(i)
1110 if self.ui.verbose:
1109 if self.ui.verbose:
1111 if i < unapplied:
1110 if i < unapplied:
1112 status = 'A'
1111 status = 'A'
@@ -1115,6 +1114,7 b' class queue:'
1115 else:
1114 else:
1116 status = 'G'
1115 status = 'G'
1117 pfx = '%d %s ' % (i, status)
1116 pfx = '%d %s ' % (i, status)
1117 patch = pname(i)
1118 self.ui.write('%s%s\n' % (pfx, displayname(patch)))
1118 self.ui.write('%s%s\n' % (pfx, displayname(patch)))
1119 else:
1119 else:
1120 msng_list = []
1120 msng_list = []
@@ -87,6 +87,9 b' hg --traceback qpush -a'
87
87
88 echo % qseries
88 echo % qseries
89 hg qseries
89 hg qseries
90 hg qpop
91 hg qseries -vs
92 hg qpush
90
93
91 echo % qapplied
94 echo % qapplied
92 hg qapplied
95 hg qapplied
@@ -89,6 +89,11 b' Now at: test2.patch'
89 % qseries
89 % qseries
90 test.patch
90 test.patch
91 test2.patch
91 test2.patch
92 Now at: test.patch
93 0 A test.patch: foo bar
94 1 U test2.patch:
95 applying test2.patch
96 Now at: test2.patch
92 % qapplied
97 % qapplied
93 test.patch
98 test.patch
94 test2.patch
99 test2.patch
General Comments 0
You need to be logged in to leave comments. Login now