##// 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 1106 if not missing:
1107 1107 for i in xrange(start, start+length):
1108 1108 pfx = ''
1109 patch = pname(i)
1110 1109 if self.ui.verbose:
1111 1110 if i < unapplied:
1112 1111 status = 'A'
@@ -1115,6 +1114,7 b' class queue:'
1115 1114 else:
1116 1115 status = 'G'
1117 1116 pfx = '%d %s ' % (i, status)
1117 patch = pname(i)
1118 1118 self.ui.write('%s%s\n' % (pfx, displayname(patch)))
1119 1119 else:
1120 1120 msng_list = []
@@ -87,6 +87,9 b' hg --traceback qpush -a'
87 87
88 88 echo % qseries
89 89 hg qseries
90 hg qpop
91 hg qseries -vs
92 hg qpush
90 93
91 94 echo % qapplied
92 95 hg qapplied
@@ -89,6 +89,11 b' Now at: test2.patch'
89 89 % qseries
90 90 test.patch
91 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 97 % qapplied
93 98 test.patch
94 99 test2.patch
General Comments 0
You need to be logged in to leave comments. Login now