Skip to content

Commit ea063b5

Browse files
Merge pull request #22 from interlynk-io/fix/encoding
Add utf-8 encoding to print
2 parents c159b90 + cce74c4 commit ea063b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pylynk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def download_sbom(lynk_ctx):
125125
print('Failed to fetch SBOM')
126126
return 1
127127

128-
print(sbom)
128+
print(sbom.encode("utf-8"))
129129
return 0
130130

131131
def upload_sbom(lynk_ctx, sbom_file):

0 commit comments

Comments
 (0)