##// END OF EJS Templates
mq: only add mq attribute to local repo
Vadim Gelfer -
r2851:82f50658 default
parent child Browse files
Show More
@@ -1875,8 +1875,9 b' def reposetup(ui, repo):'
1875
1875
1876 return tagscache
1876 return tagscache
1877
1877
1878 repo.__class__ = mqrepo
1878 if repo.local():
1879 repo.mq = queue(ui, repo.join(""))
1879 repo.__class__ = mqrepo
1880 repo.mq = queue(ui, repo.join(""))
1880
1881
1881 cmdtable = {
1882 cmdtable = {
1882 "qapplied": (applied, [], 'hg qapplied [PATCH]'),
1883 "qapplied": (applied, [], 'hg qapplied [PATCH]'),
General Comments 0
You need to be logged in to leave comments. Login now