aboutsummaryrefslogtreecommitdiffstats
path: root/pathod/pathoc.py
diff options
context:
space:
mode:
Diffstat (limited to 'pathod/pathoc.py')
-rw-r--r--pathod/pathoc.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pathod/pathoc.py b/pathod/pathoc.py
index a8923013..c62993bb 100644
--- a/pathod/pathoc.py
+++ b/pathod/pathoc.py
@@ -536,11 +536,11 @@ def main(args): # pragma: no cover
if ret and args.oneshot:
return
# We consume the queue when we can, so it doesn't build up.
- for i_ in p.wait(timeout=0, finish=False):
+ for _ in p.wait(timeout=0, finish=False):
pass
except exceptions.NetlibException:
break
- for i_ in p.wait(timeout=0.01, finish=True):
+ for _ in p.wait(timeout=0.01, finish=True):
pass
except exceptions.TcpException as v:
print(str(v), file=sys.stderr)