# HG changeset patch # User Augie Fackler # Date 1457654086 18000 # Node ID 0b8457903012e0311ad0c35c9cb7b266906d80d7 # Parent 20e47bc8eea9e27c4c0bc2d5a277b6c85c646bb3 apply-patchbomb: discard --partial, which doesn't fit my workflow diff --git a/unixSoft/bin/apply-patchbomb b/unixSoft/bin/apply-patchbomb --- 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: