summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 043e13f..c74762e 100644
--- a/devel/management/commands/reporead_inotify.py
+++ b/devel/management/commands/reporead_inotify.py
@@ -68,7 +68,7 @@ class Command(BaseCommand):
and passes these on to the various pyinotify pieces as necessary and
finally builds and returns a notifier object.'''
arches = Arch.objects.filter(agnostic=False)
- repos = Repo.objects.filter(staging=False)
+ repos = Repo.objects.all()
arch_path_map = dict((arch, None) for arch in arches)
all_paths = set()
total_paths = 0