Skip to content

Commit a0686ee

Browse files
committed
fix: [pystemon importer] fix base64 encoding
1 parent f1f33d6 commit a0686ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/importer/abstract_importer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def create_message(self, obj_id, content, b64=False, gzipped=False, source=None)
8989
if not gzipped:
9090
content = self.b64_gzip(content)
9191
elif not b64:
92-
content = self.b64(gzipped)
92+
content = self.b64(content)
9393
if not content:
9494
return None
9595
if isinstance(content, bytes):

0 commit comments

Comments
 (0)