From 06c60c76bc93460e4312713a55faab53066d9cae Mon Sep 17 00:00:00 2001 From: coderaiser Date: Wed, 23 Apr 2014 08:33:36 -0400 Subject: [PATCH] chore(auth) quotes --- lib/server/auth.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/server/auth.js b/lib/server/auth.js index 228c23bb..9fa4881f 100644 --- a/lib/server/auth.js +++ b/lib/server/auth.js @@ -24,10 +24,10 @@ Util = main.util, GithubAuth = { - host: "github.com", + host: 'github.com', port: 443, - path: "/login/oauth/access_token", - method: "POST" + path: '/login/oauth/access_token', + method: 'POST' }; /** @@ -41,7 +41,7 @@ Util.log(code); authenticate(code, function(error, token) { - var result = { "token": token }; + var result = { 'token': token }; Util.log(error || result); Util.exec(callback, error, result);