Show More
@@ -34,7 +34,8 b' from rhodecode.lib.auth import LoginRequ' | |||||
34 | from rhodecode.lib.markup_renderer import MarkupRenderer, relative_links |
|
34 | from rhodecode.lib.markup_renderer import MarkupRenderer, relative_links | |
35 | from rhodecode.lib.ext_json import json |
|
35 | from rhodecode.lib.ext_json import json | |
36 | from rhodecode.lib.vcs.backends.base import EmptyCommit |
|
36 | from rhodecode.lib.vcs.backends.base import EmptyCommit | |
37 | from rhodecode.lib.vcs.exceptions import CommitError, EmptyRepositoryError |
|
37 | from rhodecode.lib.vcs.exceptions import CommitError, EmptyRepositoryError, \ | |
|
38 | CommitDoesNotExistError | |||
38 | from rhodecode.model.db import Statistics, CacheKey, User |
|
39 | from rhodecode.model.db import Statistics, CacheKey, User | |
39 | from rhodecode.model.meta import Session |
|
40 | from rhodecode.model.meta import Session | |
40 | from rhodecode.model.repo import ReadmeFinder |
|
41 | from rhodecode.model.repo import ReadmeFinder | |
@@ -272,7 +273,7 b' class RepoSummaryView(RepoAppView):' | |||||
272 | code_stats[ext]['count'] += 1 |
|
273 | code_stats[ext]['count'] += 1 | |
273 | else: |
|
274 | else: | |
274 | code_stats[ext] = {"count": 1, "desc": ext_info} |
|
275 | code_stats[ext] = {"count": 1, "desc": ext_info} | |
275 | except EmptyRepositoryError: |
|
276 | except (EmptyRepositoryError, CommitDoesNotExistError): | |
276 | pass |
|
277 | pass | |
277 | return {'size': h.format_byte_size_binary(size), |
|
278 | return {'size': h.format_byte_size_binary(size), | |
278 | 'code_stats': code_stats} |
|
279 | 'code_stats': code_stats} |
General Comments 0
You need to be logged in to leave comments.
Login now