Skip to content

Commit

Permalink
Declare variable
Browse files Browse the repository at this point in the history
  • Loading branch information
IonicaBizau committed May 26, 2016
1 parent b6b318a commit 8751d6e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ GitStats.prototype.authors = function (options, callback) {
repo.exec("shortlog -s -n --all", function (err, stdout) {
if (err) { return callback(err); }
var lines = stdout.split("\n");
pieData = stdout.split("\n").map(function (c) {
var pieData = stdout.split("\n").map(function (c) {
var splits = c.split("\t").map(function (cc) {
return cc.trim();
});
Expand Down

0 comments on commit 8751d6e

Please # to comment.