Skip to content

Commit 38025fa

Browse files
committedMay 29, 2015
flake8.
1 parent 5a47739 commit 38025fa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎nikola/plugins/command/status.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def _execute(self, options, args):
101101

102102
# find all scheduled posts with offset from now until publishing time
103103
posts_scheduled = [(post.date - now, post) for post in self.site.all_posts if post.publish_later]
104-
posts_scheduled = sorted(posts_scheduled, key=lambda offset_post: (offset_post[0],offset_post[1].source_path))
104+
posts_scheduled = sorted(posts_scheduled, key=lambda offset_post: (offset_post[0], offset_post[1].source_path))
105105

106106
if len(posts_scheduled) > 0:
107107
if options['list_scheduled']:

0 commit comments

Comments
 (0)