diff options
author | Kimmo Brunfeldt <kimmobrunfeldt@gmail.com> | 2014-07-09 13:54:53 +0300 |
---|---|---|
committer | Kimmo Brunfeldt <kimmobrunfeldt@gmail.com> | 2014-07-09 13:54:53 +0300 |
commit | 35bc2b8f466a5383ea53d323979ff8fbaf93b5b0 (patch) | |
tree | 625f34d471fddc0872fc86f5325ad26d6683631b | |
parent | 4cc78ecb4bb81190c5b68a2a4101595d80d8e3a4 (diff) | |
download | git-hours-35bc2b8f466a5383ea53d323979ff8fbaf93b5b0.zip git-hours-35bc2b8f466a5383ea53d323979ff8fbaf93b5b0.tar.gz git-hours-35bc2b8f466a5383ea53d323979ff8fbaf93b5b0.tar.bz2 |
Fix linter error
-rwxr-xr-x | index.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -84,9 +84,9 @@ function commits(gitPath) { author = { name: commit.author().name(), email: commit.author().email() - } + }; } - + var commitData = { sha: commit.sha(), date: commit.date(), |