diff options
author | ansuz <ansuz@transitiontech.ca> | 2019-03-06 17:44:52 +0100 |
---|---|---|
committer | ansuz <ansuz@transitiontech.ca> | 2019-03-06 17:44:52 +0100 |
commit | 7af18601396fa8fd08dc94fa25166780e3757a7b (patch) | |
tree | 90e7f0ee1603b40633fe92e4155c22653adb02ac | |
parent | abb65e96dcf59c8de5f90f6625469470e68d2d3a (diff) | |
download | patchfoo-7af18601396fa8fd08dc94fa25166780e3757a7b.tar.gz patchfoo-7af18601396fa8fd08dc94fa25166780e3757a7b.zip |
remove a trailing comma that caused a parse error
-rw-r--r-- | lib/render-msg.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/render-msg.js b/lib/render-msg.js index f998af2..44d8665 100644 --- a/lib/render-msg.js +++ b/lib/render-msg.js @@ -1308,7 +1308,7 @@ RenderMsg.prototype.npmPackages = function (cb) { 'npm install --registry=' + self.app.baseUrl + '/npm-registry/' + encodeURIComponent(self.msg.key) + ' ' + - singlePkgSpec), + singlePkgSpec) ) : '', dependencyLinks.length ? h('div', 'dependencies via: ', dependencyLinks.map(renderIdLink) |