aboutsummaryrefslogtreecommitdiff
path: root/rhodecode/lib/vcs/backends/git/changeset.py
diff options
context:
space:
mode:
authorMarcin Kuzminski <marcin@python-works.com>2012-12-03 02:56:57 +0100
committerMarcin Kuzminski <marcin@python-works.com>2012-12-03 02:56:57 +0100
commit47a20b605b3d3a87e611b8bac6ee9baba23fd92a (patch)
treea0405d77a70edc653d5b73059cc0e3a600f910e8 /rhodecode/lib/vcs/backends/git/changeset.py
parent9f1be6440f2bc3376c6f4081514ab175e91cceef (diff)
whitespace and formatting
--HG-- branch : beta
Diffstat (limited to 'rhodecode/lib/vcs/backends/git/changeset.py')
-rw-r--r--rhodecode/lib/vcs/backends/git/changeset.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rhodecode/lib/vcs/backends/git/changeset.py b/rhodecode/lib/vcs/backends/git/changeset.py
index b7587012..06658ee1 100644
--- a/rhodecode/lib/vcs/backends/git/changeset.py
+++ b/rhodecode/lib/vcs/backends/git/changeset.py
@@ -291,7 +291,7 @@ class GitChangeset(BaseChangeset):
include = [self.id]
walker = Walker(self.repository._repo.object_store, include,
paths=[path], max_entries=1)
- return [self.repository.get_changeset(sha)
+ return [self.repository.get_changeset(sha)
for sha in (x.commit.id for x in walker)]
def get_file_annotate(self, path):