chore(auth) quotes

This commit is contained in:
coderaiser 2014-04-23 08:33:36 -04:00
parent 20f67639c8
commit 06c60c76bc

View file

@ -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);