# HG changeset patch # User Augie Fackler # Date 1479781632 18000 # Node ID ee2097c560c1565509359402e06be0ae4a5a56e0 # Parent 0ae83ede68c590c94f8aa466a851cbb085860142 rebase: refer to dirstateguard by its new name diff -r 0ae83ede68c5 -r ee2097c560c1 hgext/rebase.py --- a/hgext/rebase.py Mon Nov 21 21:05:52 2016 -0500 +++ b/hgext/rebase.py Mon Nov 21 21:27:12 2016 -0500 @@ -32,6 +32,7 @@ commands, copies, destutil, + dirstateguard, error, extensions, hg, @@ -790,7 +791,7 @@ '''Commit the wd changes with parents p1 and p2. Reuse commit info from rev but also store useful information in extra. Return node of committed revision.''' - dsguard = cmdutil.dirstateguard(repo, 'rebase') + dsguard = dirstateguard.dirstateguard(repo, 'rebase') try: repo.setparents(repo[p1].node(), repo[p2].node()) ctx = repo[rev]