Skip to content

Commit

Permalink
Fix #2139
Browse files Browse the repository at this point in the history
  • Loading branch information
ralsina committed Oct 31, 2015
1 parent 4736322 commit 3d7015b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
Expand Up @@ -4,6 +4,7 @@ New in Master
Bugfixes
--------

* Mention disabled plugins in ``nikola plugin --list-installed`` (Issue #2139)
* Don't examine all gallery image dates every build (Issue #2160)

New in v7.7.3
Expand Down
3 changes: 3 additions & 0 deletions nikola/plugins/command/plugin.py
Expand Up @@ -176,8 +176,11 @@ def list_installed(self):
plugins.append([plugin.name, p])

plugins.sort()
print('Installed Plugins')
print('-----------------')
for name, path in plugins:
print('{0} at {1}'.format(name, path))
print('\n\nAlso, you have disabled these plugins: {}'.format(self.site.config['DISABLED_PLUGINS']))
return 0

def do_upgrade(self, url):
Expand Down

0 comments on commit 3d7015b

Please sign in to comment.