Skip to content

Commit

Permalink
fixed bug, bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
Joel Van Horn committed Dec 12, 2011
1 parent 2c8ae27 commit 3e1b7c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/OperationHelper.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ OperationHelper.prototype.execute = function(operation, params, callback) {
});
response.addListener('end', function() {
var statusCode = response.statusCode == 200 ? null : response.statusCode;
parser.addListener('end', function(result) {
this.parser.addListener('end', function(result) {
callback(statusCode, result);

// so that next time this is called the result isn't concatenated
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ "name" : "apac"
, "description" : "Amazon Product Advertising API Client for Node"
, "version" : "0.0.5"
, "version" : "0.0.6"
, "author" : "Dustin McQuay <dmcquay@gmail.com>"
, "repository" :
{ "type" : "git"
Expand Down

0 comments on commit 3e1b7c3

Please sign in to comment.