Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 1.2.3
- Support Python 3 everywhere

## 1.2.2
- Fix `sqs_sensor` to parse payload as dictionary (so that it actually works)

Expand Down
2 changes: 1 addition & 1 deletion actions/lib/ec2parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ def parseEC2Object(self, output):
v_list = []
for item in v:
# avoid touching the basic types.
if isinstance(item, (basestring, bool, int, long, float)):
if isinstance(item, (bool, float) + six.string_types + six.integer_types):
v_list.append(v)
else:
v_list.append(str(item))
Expand Down
5 changes: 4 additions & 1 deletion pack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,11 @@ keywords:
- SQS
- lambda
- kinesis
version : 1.2.2
version : 1.2.3
python_versions:
- "2"
author : StackStorm, Inc.
email : info@stackstorm.com
python_versions:
- "2"
- "3"