mirror of
https://github.com/correl/codereview.git
synced 2024-11-23 19:19:50 +00:00
Fixed bug, wasn't setting default ref correctly for git repos without a master branch
This commit is contained in:
parent
3cb107306a
commit
161482ccb6
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ class Git(VCS):
|
|||
if 'master' in self.branches():
|
||||
self._ref = 'master'
|
||||
else:
|
||||
self.ref = self.branches()[0]
|
||||
self._ref = self.branches()[0]
|
||||
def branches(self):
|
||||
if not self._branches:
|
||||
self._branches = dict([(head.name, self.commit(head.commit)) for head in self._repo.heads])
|
||||
|
|
Loading…
Reference in a new issue