aboutsummaryrefslogtreecommitdiffstats
path: root/netlib/debug.py
diff options
context:
space:
mode:
Diffstat (limited to 'netlib/debug.py')
-rw-r--r--netlib/debug.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/netlib/debug.py b/netlib/debug.py
index 08ab2a44..8292d8d2 100644
--- a/netlib/debug.py
+++ b/netlib/debug.py
@@ -44,7 +44,8 @@ def dump_info(sig, frm, file=sys.stdout): # pragma: no cover
print("Summary", file=file)
print("=======", file=file)
print("num threads: ", p.num_threads(), file=file)
- print("num fds: ", p.num_fds(), file=file)
+ if hasattr(p, "num_fds"):
+ print("num fds: ", p.num_fds(), file=file)
print("memory: ", p.memory_info(), file=file)
print(file=file)