comparison rhodecode/controllers/pullrequests.py @ 3394:fe2bb88bf7ac beta

whitespace cleanup
author Marcin Kuzminski <marcin@python-works.com>
date Thu, 21 Feb 2013 02:31:21 +0100
parents cb40b3f6428c
children bbe21df7ad48
comparison
equal deleted inserted replaced
3393:f2425f427f8e 3394:fe2bb88bf7ac
139 'description': org_repo.description, 139 'description': org_repo.description,
140 'revs': h.select('other_ref', c.default_other_ref, 140 'revs': h.select('other_ref', c.default_other_ref,
141 c.default_other_refs, class_='refs') 141 c.default_other_refs, class_='refs')
142 } 142 }
143 143
144 # gather forks and add to this list ... even though it is rare to 144 # gather forks and add to this list ... even though it is rare to
145 # request forks to pull their parent 145 # request forks to pull their parent
146 for fork in org_repo.forks: 146 for fork in org_repo.forks:
147 c.other_repos.append((fork.repo_name, fork.repo_name)) 147 c.other_repos.append((fork.repo_name, fork.repo_name))
148 refs, default_ref = self._get_repo_refs(fork.scm_instance) 148 refs, default_ref = self._get_repo_refs(fork.scm_instance)
149 other_repos_info[fork.repo_name] = { 149 other_repos_info[fork.repo_name] = {