@@ -136,13 +136,13 @@ class ScmModel(BaseModel):
.all()]
for r_name in all_repos:
r_dbr = self.get(r_name, invalidation_list)
if r_dbr is not None:
repo, dbrepo = r_dbr
if repo is None and dbrepo is None:
if repo is None or dbrepo is None:
log.error('Repository %s looks somehow corrupted', r_name)
continue
last_change = repo.last_change
tip = h.get_changeset_safe(repo, 'tip')
tmp_d = {}
Status change: