diff options
| author | Alex Schofield <git@ajschof.me> | 2025-03-03 00:19:12 +0000 |
|---|---|---|
| committer | Alex Schofield <git@ajschof.me> | 2025-03-03 00:19:12 +0000 |
| commit | a4540c0a7219ba0c2ebaaac066372dd27eef5914 (patch) | |
| tree | d95f473822cdca1134c8098a2ca78643618c2924 | |
| parent | d6cbccdde285b789ef1abfecfe128516b0f05b8a (diff) | |
| download | gdpr-obfuscator-a4540c0a7219ba0c2ebaaac066372dd27eef5914.tar.gz gdpr-obfuscator-a4540c0a7219ba0c2ebaaac066372dd27eef5914.zip | |
decode obfuscated byte-stream before printing
| -rw-r--r-- | cli.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -40,7 +40,7 @@ def main(): else: obfuscated_data = obfuscator.process_s3(json_input) - print(obfuscated_data) + print(obfuscated_data.decode("utf-8")) if __name__ == "__main__": |
