mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-22 22:27:17 +00:00
fix: [pystemon importer] fix base64 encoding
This commit is contained in:
parent
f1f33d6c1b
commit
a0686eefcf
1 changed files with 1 additions and 1 deletions
|
@ -89,7 +89,7 @@ class AbstractImporter(ABC): # TODO ail queues
|
||||||
if not gzipped:
|
if not gzipped:
|
||||||
content = self.b64_gzip(content)
|
content = self.b64_gzip(content)
|
||||||
elif not b64:
|
elif not b64:
|
||||||
content = self.b64(gzipped)
|
content = self.b64(content)
|
||||||
if not content:
|
if not content:
|
||||||
return None
|
return None
|
||||||
if isinstance(content, bytes):
|
if isinstance(content, bytes):
|
||||||
|
|
Loading…
Reference in a new issue