Mercurial > hg
comparison hgext/convert/subversion.py @ 8117:2b30d8488819
remove unnecessary outer parenthesis in if-statements
author | Martin Geisler <mg@lazybytes.net> |
---|---|
date | Wed, 22 Apr 2009 01:39:47 +0200 |
parents | 89b6450148d0 |
children | fca0b16c594a |
comparison
equal
deleted
inserted
replaced
8116:c11636f0609e | 8117:2b30d8488819 |
---|---|
739 | 739 |
740 branched = False | 740 branched = False |
741 rev = self.revid(revnum) | 741 rev = self.revid(revnum) |
742 # branch log might return entries for a parent we already have | 742 # branch log might return entries for a parent we already have |
743 | 743 |
744 if (rev in self.commits or revnum < to_revnum): | 744 if rev in self.commits or revnum < to_revnum: |
745 return None, branched | 745 return None, branched |
746 | 746 |
747 parents = [] | 747 parents = [] |
748 # check whether this revision is the start of a branch or part | 748 # check whether this revision is the start of a branch or part |
749 # of a branch renaming | 749 # of a branch renaming |