hgext3rd/topic/topicmap.py
changeset 1937 60b7de2b3dd1
parent 1928 be0bc9dcb930
child 1949 79c08d17a3d7
equal deleted inserted replaced
1936:31583ddda6d9 1937:60b7de2b3dd1
     1 from mercurial import branchmap
       
     2 from mercurial import encoding
       
     3 from mercurial import error
       
     4 from mercurial import scmutil
       
     5 from mercurial import util
       
     6 from mercurial.node import hex, bin, nullid
     1 from mercurial.node import hex, bin, nullid
       
     2 from mercurial import (
       
     3     branchmap,
       
     4     encoding,
       
     5     error,
       
     6     scmutil,
       
     7     util,
       
     8 )
     7 
     9 
     8 def _filename(repo):
    10 def _filename(repo):
     9     """name of a branchcache file for a given repo or repoview"""
    11     """name of a branchcache file for a given repo or repoview"""
    10     filename = "cache/topicmap"
    12     filename = "cache/topicmap"
    11     if repo.filtername:
    13     if repo.filtername: