summaryrefslogtreecommitdiff
path: root/deps/npm/lib/view.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/lib/view.js')
-rw-r--r--deps/npm/lib/view.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/npm/lib/view.js b/deps/npm/lib/view.js
index babd072f7c..f7ba5a9541 100644
--- a/deps/npm/lib/view.js
+++ b/deps/npm/lib/view.js
@@ -56,7 +56,7 @@ function view (args, silent, cb) {
if (name === ".") return cb(view.usage)
// get the data about this package
- registry.get(name, 600, function (er, data) {
+ registry.get(name, function (er, data) {
if (er) return cb(er)
if (data["dist-tags"].hasOwnProperty(version)) {
version = data["dist-tags"][version]