summaryrefslogtreecommitdiffstats
path: root/subcmds/sync.py
diff options
context:
space:
mode:
Diffstat (limited to 'subcmds/sync.py')
-rw-r--r--subcmds/sync.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/subcmds/sync.py b/subcmds/sync.py
index dbdaa2c2..1e87d152 100644
--- a/subcmds/sync.py
+++ b/subcmds/sync.py
@@ -943,7 +943,7 @@ later is required to fix a server side protocol bug.
943 break 943 break
944 # Stop us from non-stopped fetching actually-missing repos: If set 944 # Stop us from non-stopped fetching actually-missing repos: If set
945 # of missing repos has not been changed from last fetch, we break. 945 # of missing repos has not been changed from last fetch, we break.
946 missing_set = set(p.name for p in missing) 946 missing_set = {p.name for p in missing}
947 if previously_missing_set == missing_set: 947 if previously_missing_set == missing_set:
948 break 948 break
949 previously_missing_set = missing_set 949 previously_missing_set = missing_set