Commit 73b3a91a authored by Andrew Sliwinski's avatar Andrew Sliwinski

Merge pull request #172 from thisandagain/bugfix/120

Fix call to jar.get. Resolves GH-120
parents 399d91fe 44f31010
......@@ -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