changeset 379:0b8457903012

apply-patchbomb: discard --partial, which doesn't fit my workflow
author Augie Fackler <raf@durin42.com>
date Thu, 10 Mar 2016 18:54:46 -0500
parents 20e47bc8eea9
children 0ceb8554801e
files unixSoft/bin/apply-patchbomb
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/unixSoft/bin/apply-patchbomb
+++ b/unixSoft/bin/apply-patchbomb
@@ -19,7 +19,7 @@ def main():
                            cmp=lambda x,y: cmp(x.subject(), y.subject())))
     for m in messages:
         print 'Applying', m.subject()
-        p = subprocess.Popen(['hg', 'import', '--partial', '--obsolete', '-'], stdin=subprocess.PIPE)
+        p = subprocess.Popen(['hg', 'import', '--obsolete', '-'], stdin=subprocess.PIPE)
         p.stdin.write(m.source())
         p.stdin.close()
         if p.wait() != 0: