Skip to content
This repository has been archived by the owner on Aug 11, 2022. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
typo
  • Loading branch information
isaacs committed Oct 31, 2010
1 parent e54204c commit 44434eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/owner.js
Expand Up @@ -29,7 +29,7 @@ function ls (pkg, cb) {
if (er) return log.er(cb, "Couldn't get owner data for "+pkg)(er)
var owners = data.maintainers
if (!owners || !owners.length) msg = "admin party!"
else msg = owners.map(function (o) { return o.name +" <"+o.email+">") }).join("\n")
else msg = owners.map(function (o) { return o.name +" <"+o.email+">" }).join("\n")
output.write(npm.config.get("outfd"), msg, function (er) {
cb(er, owners)
})
Expand Down

0 comments on commit 44434eb

Please sign in to comment.