From d1f43a7a702e0984f5613145ce8049f3b3ce4d3c Mon Sep 17 00:00:00 2001 From: 0x79h Date: Thu, 14 Dec 2023 18:50:54 +0800 Subject: [PATCH] fix: fix typo in #1417 --- qiling/os/os.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qiling/os/os.py b/qiling/os/os.py index 3351039a6..fd618cf68 100644 --- a/qiling/os/os.py +++ b/qiling/os/os.py @@ -60,7 +60,7 @@ def __init__(self, ql: Qiling, resolvers: Mapping[Any, Resolver] = {}): # for the standard streams which usually do not support certain operations, # such as fileno(). here we use this to determine how we are going to use # the environment standard streams - assert sts.stdin != None # IDAPython don't have corresponding fds + assert sys.stdin != None # IDAPython don't have corresponding fds sys.stdin.fileno() except (UnsupportedOperation, AssertionError): # Qiling is used on an interactive shell or embedded python interpreter.