Commit 44f31010 authored by Andrew Sliwinski's avatar Andrew Sliwinski

Fix call to jar.get. Resolves GH-120

parent b09d191d
......@@ -26,7 +26,7 @@ Jar.use = function (name, uri, callback) {
uri: uri
}, function (err) {
if (err) return callback(err);
module.get(name, callback);
Jar.get(name, callback);
});
});
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment