Update cc/sc-encode
All checks were successful
Check syntax / check (push) Successful in 8s

This commit is contained in:
Nova Cat 2024-12-24 16:10:24 -08:00
parent cdfd6b9d7b
commit a1ee0b6cdf

View file

@ -2,6 +2,6 @@
import sweecrypt
from sys import argv
if argv[3][:2] == "-s":
print(sweecrypt.encrypt(" ".join(argv[4:]), argv[3][3:]))
print(sweecrypt.encrypt(" ".join(argv[4:]), int(argv[3][3:])))
else:
print(sweecrypt.encrypt(" ".join(argv[3:])))