Skip to content

Commit

Permalink
p4: full length of commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
Michel Samia committed Jan 12, 2016
1 parent d02167a commit 343acd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vcs/backends/p4/repository.py
Expand Up @@ -113,7 +113,7 @@ def get_changesets(self, start=None, end=None, start_date=None,
start_date=start_date.strftime(STR_FORMAT),
end_date=end_date.strftime(STR_FORMAT))

result = self.repo.run(['changes', '-s', 'submitted', path_with_revspec])
result = self.repo.run(['changes', '-l', '-s', 'submitted', path_with_revspec])
result = [P4Changeset(cs) for cs in result]

return result
Expand Down

0 comments on commit 343acd5

Please sign in to comment.