From 1ffd14b3212f1fafd087dadc7a1a8548f53c6cab Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Thu, 9 Mar 2023 19:08:31 +0000 Subject: portageOutput -> p_out --- src/backend/install.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/backend/install.py') diff --git a/src/backend/install.py b/src/backend/install.py index 6b577a2..a9cec1b 100644 --- a/src/backend/install.py +++ b/src/backend/install.py @@ -183,8 +183,8 @@ def xstart(pkgname): # kill portage if the program dies or it's terminated by the user atexit.register(sisyphus.killemerge.start, p_exe) - for portageOutput in io.TextIOWrapper(p_exe.stdout, encoding="utf-8"): - print(portageOutput.rstrip()) + for p_out in io.TextIOWrapper(p_exe.stdout, encoding="utf-8"): + print(p_out.rstrip()) p_exe.wait() sisyphus.syncdb.localTable() -- cgit v1.2.3