From ef3f687db0f53f026e808c4284e084255c9e9dd5 Mon Sep 17 00:00:00 2001 From: Andrew Opalach Date: Wed, 17 Jun 2026 15:08:30 -0400 Subject: Update portal to avoid TLS fingerprinting Signed-off-by: Andrew Opalach --- src/portal/cpy/portal.pyx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/portal/cpy/portal.pyx') diff --git a/src/portal/cpy/portal.pyx b/src/portal/cpy/portal.pyx index 6307a2d..ae209b5 100644 --- a/src/portal/cpy/portal.pyx +++ b/src/portal/cpy/portal.pyx @@ -7,16 +7,16 @@ import sys sys.path.append('./py') cdef int log_info(char *message) except -1: - return lib.log_info("%s", message) + return lib.log_info('%s', message) cdef int log_warn(char *message) except -1: - return lib.log_warn("%s", message) + return lib.log_warn('%s', message) cdef int log_error(char *message) except -1: - return lib.log_error("%s", message) + return lib.log_error('%s', message) cdef int log_debug(char *message) except -1: - return lib.log_debug("%s", message) + return lib.log_debug('%s', message) def encode_str(str): return str.encode('UTF-8') -- cgit v1.2.3-101-g0448