Skip to content

Commit

Permalink
Better error message
Browse files Browse the repository at this point in the history
  • Loading branch information
kriszyp committed Jan 4, 2011
1 parent cdd6b41 commit bee2643
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/nodules.js
Expand Up @@ -555,7 +555,7 @@ exports.load = function(uri, require){
var source = protocolLoader(uri);
return when(source, function(source){
if(!source){
throw new Error("Not found");
throw new Error("Not found " + uri);
}
// check for source defined package URI
var packageUri = source.match(/package root: (\w+:.*)/);
Expand Down

0 comments on commit bee2643

Please sign in to comment.