Allow the mail command to send unapplied patches as well
[stgit] / stgit / commands / mail.py
index 5d71657..fe44bc9 100644 (file)
@@ -480,7 +480,8 @@ def func(parser, options, args):
     if options.all:
         patches = applied
     elif len(args) >= 1:
-        patches = parse_patches(args, applied)
+        unapplied = crt_series.get_unapplied()
+        patches = parse_patches(args, applied + unapplied, len(applied))
     else:
         raise CmdException, 'Incorrect options. Unknown patches to send'