summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/examples/examples.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/examples.py b/doc/examples/examples.py
index 0ecbf1e86..3389230f7 100644
--- a/doc/examples/examples.py
+++ b/doc/examples/examples.py
@@ -415,7 +415,7 @@ class exuser_find(Method):
# patter expects them in one dict. We need to arrange that.
for e in entries:
e[1]['dn'] = e[0]
- entries = [e for (dn, e) in entries]
+ entries = [e for (_dn, e) in entries]
return dict(result=entries, count=len(entries), truncated=truncated)