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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
setup(
name='prancer_basic',
# also update the version in processor.__init__.py file
version='3.1.0',
version='3.1.1',
description='Prancer Basic, http://prancer.io/',
long_description=LONG_DESCRIPTION,
license = "BSD",
Expand Down
2 changes: 1 addition & 1 deletion src/processor/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Prancer Basic

__version__ = '3.1.0'
__version__ = '3.1.1'
5 changes: 5 additions & 0 deletions src/processor/connector/snapshot_aws.py
Original file line number Diff line number Diff line change
Expand Up @@ -1276,8 +1276,13 @@ def eliminate_duplicate_snapshots(snapshot_data):
is_updated = False
for snapshot_id, value in snapshot_data.items():
is_updated = False
if not isinstance(value, list):
data[snapshot_id] = value
continue
for count, snapshot in enumerate(value):
for sid, sval in data.items():
if not isinstance(sval, list):
continue
for cnt, val in enumerate(sval):
if sid == snapshot_id:
continue
Expand Down
Loading