Show More
@@ -765,7 +765,8 b' class queue(object):' | |||
|
765 | 765 | raise util.Abort(_("cannot delete applied patch %s") % patch) |
|
766 | 766 | if patch not in self.series: |
|
767 | 767 | raise util.Abort(_("patch %s not in series file") % patch) |
|
768 | realpatches.append(patch) | |
|
768 | if patch not in realpatches: | |
|
769 | realpatches.append(patch) | |
|
769 | 770 | |
|
770 | 771 | numrevs = 0 |
|
771 | 772 | if opts.get('rev'): |
General Comments 0
You need to be logged in to leave comments.
Login now