Fix for version branch issues.

This commit is contained in:
echel0n 2014-07-30 16:40:42 -07:00
parent b8b5947ae6
commit ad39ac8772
1 changed files with 3 additions and 3 deletions

View File

@ -141,7 +141,7 @@ class WindowsUpdateManager(UpdateManager):
self.branch = sickbeard.BRANCH
if sickbeard.BRANCH == '':
sickbeard.BRANCH = self.branch = self._find_installed_branch()
self.branch = self._find_installed_branch()
self._cur_version = None
self._cur_commit_hash = None
@ -290,7 +290,7 @@ class GitUpdateManager(UpdateManager):
self.branch = sickbeard.BRANCH
if sickbeard.BRANCH == '':
sickbeard.BRANCH = self.branch = self._find_installed_branch()
self.branch = self._find_installed_branch()
self._cur_commit_hash = None
self._newest_commit_hash = None
@ -548,7 +548,7 @@ class SourceUpdateManager(UpdateManager):
self.branch = sickbeard.BRANCH
if sickbeard.BRANCH == '':
sickbeard.BRANCH = self.branch = self._find_installed_branch()
self.branch = self._find_installed_branch()
self._cur_commit_hash = None
self._newest_commit_hash = None