summaryrefslogtreecommitdiffstats
path: root/devel/management/commands/reporead_inotify.py
diff options
context:
space:
mode:
Diffstat (limited to 'devel/management/commands/reporead_inotify.py')
-rw-r--r--devel/management/commands/reporead_inotify.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/devel/management/commands/reporead_inotify.py b/devel/management/commands/reporead_inotify.py
index 16b3869..04f6576 100644
--- a/devel/management/commands/reporead_inotify.py
+++ b/devel/management/commands/reporead_inotify.py
@@ -77,7 +77,7 @@ class Command(BaseCommand):
for repo in repos)
# take a python format string and generate all unique combinations
# of directories from it; using set() ensures we filter it down
- paths = set(self.path_template % values for values in combos)
+ paths = {self.path_template % values for values in combos}
total_paths += len(paths)
all_paths |= paths
arch_path_map[arch] = paths