diff options
author | Teddy Wing | 2017-08-11 00:14:03 +0200 |
---|---|---|
committer | Teddy Wing | 2017-08-11 00:14:03 +0200 |
commit | 983ede99bf5861bb52b163da846767e5de12ef07 (patch) | |
tree | 8b24c1b26231f09ec0dc6960043908c33af036ff /src/Plugin/GitHubCommit.hs | |
parent | 1f40af49b66933ccbc52fb1c1ccdaa6c9e80290b (diff) | |
download | sorbot-983ede99bf5861bb52b163da846767e5de12ef07.tar.bz2 |
gitHubCommitAction: Add missing period to error message
Diffstat (limited to 'src/Plugin/GitHubCommit.hs')
-rw-r--r-- | src/Plugin/GitHubCommit.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Plugin/GitHubCommit.hs b/src/Plugin/GitHubCommit.hs index dc94731..492fd30 100644 --- a/src/Plugin/GitHubCommit.hs +++ b/src/Plugin/GitHubCommit.hs @@ -28,7 +28,7 @@ gitHubCommitAction message dbConn = do where respond [] = Left "I couldn't find a repo URL for this channel. \ - \Try `git remote set origin REPO_URL`" + \Try `git remote set origin REPO_URL`." respond ((RepoUrlRow r):_) = Right $ r ++ "/commits/" ++ M.text message =~ matchRegex gitHubCommit |