summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorChristian González <nerdoc@users.noreply.github.com>2015-01-02 07:02:44 +0100
committerChristian González <nerdoc@users.noreply.github.com>2015-01-02 07:02:44 +0100
commit0078fe6c101a4c99d82f4c2948b720f873e13f44 (patch)
tree0d028437a4e44e3b55cd940be692de39aea10f07 /lib
parent3a555b8bb9eb683c964bb784b5d4d6017d73ad2b (diff)
downloadgitlab-shell-0078fe6c101a4c99d82f4c2948b720f873e13f44.tar.gz
double quotes to single quotes
Diffstat (limited to 'lib')
-rw-r--r--lib/gitlab_net.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab_net.rb b/lib/gitlab_net.rb
index e17de23..e1b7dfc 100644
--- a/lib/gitlab_net.rb
+++ b/lib/gitlab_net.rb
@@ -30,7 +30,7 @@ class GitlabNet
if resp.code == '200'
GitAccessStatus.create_from_json(resp.body)
else
- GitAccessStatus.new(false, "API is not accessible")
+ GitAccessStatus.new(false, 'API is not accessible')
end
end