##// END OF EJS Templates
remotefilelog: use repo.local() instead of isinstance()
Matt Harbison -
r41088:c61b8dfb default
parent child Browse files
Show More
@@ -375,7 +375,7 b' def debugdatashallow(orig, *args, **kwds'
375 remotefilelog.remotefilelog.__len__ = oldlen
375 remotefilelog.remotefilelog.__len__ = oldlen
376
376
377 def reposetup(ui, repo):
377 def reposetup(ui, repo):
378 if not isinstance(repo, localrepo.localrepository):
378 if not repo.local():
379 return
379 return
380
380
381 # put here intentionally bc doesnt work in uisetup
381 # put here intentionally bc doesnt work in uisetup
General Comments 0
You need to be logged in to leave comments. Login now