aboutsummaryrefslogtreecommitdiff
path: root/rhodecode/controllers/changeset.py
diff options
context:
space:
mode:
authorMarcin Kuzminski <marcin@python-works.com>2012-06-10 18:15:00 +0200
committerMarcin Kuzminski <marcin@python-works.com>2012-06-10 18:15:00 +0200
commit044679858f446fb330abef6abda9884c92cb98a1 (patch)
tree56f361d1924ca39e2c509744a2b8a38bf5c5a192 /rhodecode/controllers/changeset.py
parentb738f36d16e31761f0e0c74fc98da986025acb5e (diff)
- pull request generates overview based on it's params
- added page to show all pull-requests for a repository - db schema changes to support comments and inline comments for pull-requests --HG-- branch : codereview
Diffstat (limited to 'rhodecode/controllers/changeset.py')
-rw-r--r--rhodecode/controllers/changeset.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rhodecode/controllers/changeset.py b/rhodecode/controllers/changeset.py
index 1e7d5163..18801a26 100644
--- a/rhodecode/controllers/changeset.py
+++ b/rhodecode/controllers/changeset.py
@@ -295,7 +295,7 @@ class ChangesetController(BaseRepoController):
)
# count inline comments
- for _, lines in c.inline_comments:
+ for __, lines in c.inline_comments:
for comments in lines.values():
c.inline_cnt += len(comments)