hgext3rd/topic/topicmap.py
changeset 2004 410b7153480a
parent 1970 076baad148d9
child 2653 13313d0cab71
equal deleted inserted replaced
2003:61d595ce8994 2004:410b7153480a
   125             if (self.tipnode == repo.changelog.node(self.tiprev)):
   125             if (self.tipnode == repo.changelog.node(self.tiprev)):
   126                 fh = scmutil.filteredhash(repo, self.tiprev)
   126                 fh = scmutil.filteredhash(repo, self.tiprev)
   127                 if fh is None:
   127                 if fh is None:
   128                     fh = nullid
   128                     fh = nullid
   129                 if ((self.filteredhash == fh)
   129                 if ((self.filteredhash == fh)
   130                      and (self.phaseshash == _phaseshash(repo, self.tiprev))):
   130                     and (self.phaseshash == _phaseshash(repo, self.tiprev))):
   131                     return True
   131                     return True
   132             return False
   132             return False
   133         except IndexError:
   133         except IndexError:
   134             return False
   134             return False
   135 
   135