D2973: narrow: use repo.local() instead of isinstance()

martinvonz (Martin von Zweigbergk) phabricator at mercurial-scm.org
Fri Mar 30 18:16:15 UTC 2018


martinvonz created this revision.
Herald added a reviewer: durin42.
Herald added a subscriber: mercurial-devel.
Herald added a reviewer: hg-reviewers.

REPOSITORY
  rHG Mercurial

REVISION DETAIL
  https://phab.mercurial-scm.org/D2973

AFFECTED FILES
  hgext/narrow/__init__.py

CHANGE DETAILS

diff --git a/hgext/narrow/__init__.py b/hgext/narrow/__init__.py
--- a/hgext/narrow/__init__.py
+++ b/hgext/narrow/__init__.py
@@ -71,7 +71,7 @@
 
 def reposetup(ui, repo):
     """Wraps local repositories with narrow repo support."""
-    if not isinstance(repo, localrepo.localrepository):
+    if not repo.local():
         return
 
     narrowrepo.wraprepo(repo)



To: martinvonz, durin42, #hg-reviewers
Cc: mercurial-devel


More information about the Mercurial-devel mailing list