##// 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 79 from mercurial import (
80 80 cmdutil,
81 81 commands,
82 dirstateguard,
82 83 error,
83 84 extensions,
84 85 hg,
@@ -1724,7 +1725,7 b' class queue(object):'
1724 1725
1725 1726 dsguard = None
1726 1727 try:
1727 dsguard = cmdutil.dirstateguard(repo, 'mq.refresh')
1728 dsguard = dirstateguard.dirstateguard(repo, 'mq.refresh')
1728 1729 if diffopts.git or diffopts.upgrade:
1729 1730 copies = {}
1730 1731 for dst in a:
General Comments 0
You need to be logged in to leave comments. Login now