Skip to content

Commit

Permalink
Allowing post state 'featured'.
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfontein committed Apr 29, 2018
1 parent 61ebd06 commit 2096af0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nikola/post.py
Expand Up @@ -257,7 +257,7 @@ def __init__(
if status:
is_private = False
is_draft = False
if status == 'published':
if status in ('published', 'featured'):
post_status = status
elif status == 'private':
post_status = status
Expand Down

0 comments on commit 2096af0

Please sign in to comment.