Private GIT

Skip to content
Snippets Groups Projects
Commit 33198b46 authored by Nic Wolfe's avatar Nic Wolfe
Browse files

Merge branch 'fix_versionchecker_typo' of...

Merge branch 'fix_versionchecker_typo' of https://github.com/spikegrobstein/Sick-Beard into development
parents 376f1217 5355b56d
Branches
Tags
No related merge requests found
......@@ -330,7 +330,9 @@ class GitUpdateManager(UpdateManager):
message = "or else you're ahead of master"
elif self._num_commits_behind > 0:
message = "you're "+str(self._num_commits_behind)+' commits behind'
message = "you're %d commit" % self._num_commits_behind
if self._num_commits_behind > 1: message += 's'
message += ' behind'
else:
return
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment