Commit 75d70855 authored by Michal Čihař's avatar Michal Čihař

Explicitely tell to git we are interested about log from different branch, not...

Explicitely tell to git we are interested about log from different branch, not for possibly same named file (issue #70)
parent a7b08834
...@@ -659,7 +659,7 @@ class SubProject(models.Model): ...@@ -659,7 +659,7 @@ class SubProject(models.Model):
''' '''
if gitrepo is None: if gitrepo is None:
gitrepo = self.get_repo() gitrepo = self.get_repo()
status = gitrepo.git.log(revision) status = gitrepo.git.log(revision, '--')
if status == '': if status == '':
# No changes to merge # No changes to merge
return False return False
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment