summaryrefslogtreecommitdiffstats
path: root/devel/management/commands/import_signatures.py
diff options
context:
space:
mode:
Diffstat (limited to 'devel/management/commands/import_signatures.py')
-rw-r--r--devel/management/commands/import_signatures.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/management/commands/import_signatures.py b/devel/management/commands/import_signatures.py
index ce1aba9..da1397c 100644
--- a/devel/management/commands/import_signatures.py
+++ b/devel/management/commands/import_signatures.py
@@ -98,8 +98,8 @@ def import_signatures(keyring):
# now prune the data down to what we actually want.
# prune edges not in nodes, remove duplicates, and self-sigs
- pruned_edges = set(edge for edge in edges
- if edge.signer in nodes and edge.signer != edge.signee)
+ pruned_edges = {edge for edge in edges
+ if edge.signer in nodes and edge.signer != edge.signee}
logger.info("creating or finding %d signatures", len(pruned_edges))
created_ct = updated_ct = 0