Skip to content

Commit

Permalink
fix: [pystemon importer] fix base64 encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
Terrtia committed Jun 26, 2023
1 parent f1f33d6 commit a0686ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/importer/abstract_importer.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def create_message(self, obj_id, content, b64=False, gzipped=False, source=None)
if not gzipped:
content = self.b64_gzip(content)
elif not b64:
content = self.b64(gzipped)
content = self.b64(content)
if not content:
return None
if isinstance(content, bytes):
Expand Down

0 comments on commit a0686ee

Please sign in to comment.