Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Use comma-join for disabled plugin list
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
  • Loading branch information
Kwpolska committed Mar 12, 2017
1 parent 16244ea commit 3eec374
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nikola/plugins/command/plugin.py
Expand Up @@ -188,7 +188,7 @@ def list_installed(self):
print(formatstring.format(name, path, maxlength))
dp = self.site.config['DISABLED_PLUGINS']
if dp:
print('\n\nAlso, you have disabled these plugins: {}'.format(dp))
print('\n\nAlso, you have disabled these plugins: {}'.format(', '.join(dp)))
else:
print('\n\nNo plugins are disabled.')
return 0
Expand Down

0 comments on commit 3eec374

Please sign in to comment.