##// END OF EJS Templates
keyword: move repo.__class__ assignment out of monkeypatch context...
Christian Ebert -
r13299:f24ea935 default
parent child Browse files
Show More
@@ -636,8 +636,6 b' def reposetup(ui, repo):'
636 finally:
636 finally:
637 wlock.release()
637 wlock.release()
638
638
639 repo.__class__ = kwrepo
640
641 def kwfilectx_cmp(orig, self, fctx):
639 def kwfilectx_cmp(orig, self, fctx):
642 # keyword affects data size, comparing wdir and filelog size does
640 # keyword affects data size, comparing wdir and filelog size does
643 # not make sense
641 # not make sense
@@ -661,6 +659,8 b' def reposetup(ui, repo):'
661 except KeyError:
659 except KeyError:
662 pass
660 pass
663
661
662 repo.__class__ = kwrepo
663
664 cmdtable = {
664 cmdtable = {
665 'kwdemo':
665 'kwdemo':
666 (demo,
666 (demo,
General Comments 0
You need to be logged in to leave comments. Login now