diff options
Diffstat (limited to 'src/backend/autoremove.py')
-rw-r--r-- | src/backend/autoremove.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/autoremove.py b/src/backend/autoremove.py index ab2471b..4dd56d2 100644 --- a/src/backend/autoremove.py +++ b/src/backend/autoremove.py @@ -28,8 +28,8 @@ def xstart(): # 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() |