Skip to content

Commit

Permalink
Fix for: app module has multiple filesystem locations
Browse files Browse the repository at this point in the history
  • Loading branch information
noisy committed Feb 10, 2018
1 parent 78cdb60 commit f167e13
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 1 deletion.
Empty file added im/__init__.py
Empty file.
Empty file added im/management/__init__.py
Empty file.
2 changes: 1 addition & 1 deletion package/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def get_absolute_url(self):

class ProjectQuerySet(QuerySet):
def published(self):
return self.filter(is_published=True).none()
return self.filter(name="Steem Projects") #filter(is_published=True)

def drafts(self):
return self.filter(is_published=False)
Expand Down

0 comments on commit f167e13

Please sign in to comment.