Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #2139 #2163

Merged
merged 1 commit into from Nov 1, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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