##// END OF EJS Templates
mq: refer to dirstateguard by its new name
Augie Fackler -
r30489:0ae83ede default
parent child Browse files
Show More
@@ -79,6 +79,7 b' from mercurial.node import ('
79 from mercurial import (
79 from mercurial import (
80 cmdutil,
80 cmdutil,
81 commands,
81 commands,
82 dirstateguard,
82 error,
83 error,
83 extensions,
84 extensions,
84 hg,
85 hg,
@@ -1724,7 +1725,7 b' class queue(object):'
1724
1725
1725 dsguard = None
1726 dsguard = None
1726 try:
1727 try:
1727 dsguard = cmdutil.dirstateguard(repo, 'mq.refresh')
1728 dsguard = dirstateguard.dirstateguard(repo, 'mq.refresh')
1728 if diffopts.git or diffopts.upgrade:
1729 if diffopts.git or diffopts.upgrade:
1729 copies = {}
1730 copies = {}
1730 for dst in a:
1731 for dst in a:
General Comments 0
You need to be logged in to leave comments. Login now