##// END OF EJS Templates
iterate over repos groups for bool() calls to actually work on it....
marcink -
r3418:9fe4543b beta
parent child Browse files
Show More
@@ -291,9 +291,7 b' class ScmModel(BaseModel):'
291 if all_groups is None:
291 if all_groups is None:
292 all_groups = RepoGroup.query()\
292 all_groups = RepoGroup.query()\
293 .filter(RepoGroup.group_parent_id == None).all()
293 .filter(RepoGroup.group_parent_id == None).all()
294 group_iter = GroupList(all_groups)
294 return [x for x in GroupList(all_groups)]
295
296 return group_iter
297
295
298 def mark_for_invalidation(self, repo_name):
296 def mark_for_invalidation(self, repo_name):
299 """
297 """
General Comments 0
You need to be logged in to leave comments. Login now