summaryrefslogtreecommitdiff
path: root/app/builder/base.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/builder/base.py')
-rw-r--r--app/builder/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/builder/base.py b/app/builder/base.py
index 0d27702..a26a857 100644
--- a/app/builder/base.py
+++ b/app/builder/base.py
@@ -315,7 +315,7 @@ class BuildProjects(Build):
def get_projects(self):
all_proj = []
- projects = apps.get_model('projects', 'Project').objects.filter(status__exact=1).order_by('-pub_date')
+ projects = apps.get_model('projects', 'Project').objects.get(pk=2)
for proj in projects:
row = {'slug': proj.slug, 'name': proj.model_name}
all_proj.append(row)