# HG changeset patch # User Durham Goode # Date 1426262652 25200 # Node ID 1f8428096078660da0fcf1cfa41d32df6f750edc # Parent fa35aeb64d32d2c66e4bf25dc78c391f8b3b0fbf drophack: fix to match upstream repair.strip repair.strip upstream now assumes the input nodelist is a list, so update to match it. The upstream change only affects the name of the backup bundle, so this shouldn't affect any other functionality. diff -r fa35aeb64d32 -r 1f8428096078 hgext/drophack.py --- a/hgext/drophack.py Thu Mar 05 20:02:07 2015 -0500 +++ b/hgext/drophack.py Fri Mar 13 09:04:12 2015 -0700 @@ -150,7 +150,7 @@ stripmarker(ui, repo, markers) # strip the changeset with timed(ui, 'strip nodes'): - repair.strip(ui, repo, allnodes, backup="all", topic='drophack') + repair.strip(ui, repo, list(allnodes), backup="all", topic='drophack') finally: lockmod.release(lock, wlock)