Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixes bug that would corrupt bundle objects after processing
  • Loading branch information
audaciouscode committed Apr 3, 2017
1 parent e0847a5 commit 8ce1183
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions management/commands/process_bundles.py
Expand Up @@ -54,6 +54,9 @@ def handle(self, *args, **options):
point.fetch_secondary_identifier()

point.save()

if install_supports_jsonfield() is False:
bundle.properties = json.dumps(bundle.properties, indent=2)

bundle.processed = True
bundle.save()
Expand Down

0 comments on commit 8ce1183

Please sign in to comment.