fix warning parameter that does not exist

by @xavierchou
This commit is contained in:
Radek Stepan 2013-10-16 11:21:49 +01:00
parent 5f378090e3
commit e8e298e236
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ module.exports = (opts, cb) ->
# Filter them to labeled ones.
(all, cb) ->
async.map all, (array, cb) ->
issues.filter array, opts.size_label, (err, warn, filtered, total) ->
issues.filter array, opts.size_label, (err, filtered, total) ->
cb err, [ filtered, total ]
, (err, [ open, closed ]) ->
return cb err if err