Skip to content

Commit

Permalink
Fix typo in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
amitaibu committed May 25, 2016
1 parent 62a26bd commit 2ce6a36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion routes/ci.js
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ var getShoovConfig = function(userName, repositoryName, branchName, accessToken)
})
.catch(function(err) {
if (err.statusCode == 404) {
log.error('.shoov.yml not exist in repository %s/%s', userName, repositoryName);
log.error('.shoov.yml does not exist in repository %s/%s', userName, repositoryName);
}
else {
log.error("Can't get .shoov.yml in %s/%s", userName, repositoryName, { errMessage: err.message } );
Expand Down

0 comments on commit 2ce6a36

Please sign in to comment.