Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove useless string concatenation [ci fix]
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
  • Loading branch information
Kwpolska committed May 2, 2018
1 parent 8a71bee commit a63a9fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nikola/post.py
Expand Up @@ -267,7 +267,7 @@ def __init__(
post_status = status
is_draft = True
else:
LOGGER.warn(('The post "{0}" has the unknown status "{1}". ' +
LOGGER.warn(('The post "{0}" has the unknown status "{1}". '
'Valid values are "published", "featured", "private" and "draft".').format(self.source_path, status))

if self.config['WARN_ABOUT_TAG_METADATA']:
Expand Down

0 comments on commit a63a9fa

Please sign in to comment.