Skip to content
This repository has been archived by the owner on Nov 5, 2018. It is now read-only.

Commit

Permalink
add missing semi-colon.
Browse files Browse the repository at this point in the history
  • Loading branch information
perezd committed Sep 28, 2011
1 parent c9a623a commit a38b1c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nano.js
Expand Up @@ -141,7 +141,7 @@ module.exports = exports = nano = function database_module(cfg) {
var value;
for(var key in prms) {
if(prms.hasOwnProperty(key)) {
value = prms[key]
value = prms[key];
q_str.push(key+"="+qs.escape(value));
}
}
Expand Down

0 comments on commit a38b1c4

Please sign in to comment.