Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e8cf4ac

Browse files
committedJul 12, 2015
Fixed superfluous self.
1 parent 3836393 commit e8cf4ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎nikola/plugins/command/import_wordpress.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def install_plugin(site, plugin_name, output_dir=None, show_install_notes=False)
6666
return False
6767
if not plugin_installer_info.is_activated:
6868
# Someone might have disabled the plugin in the `conf.py` used
69-
self.site.plugin_manager.activatePluginByName(plugin_installer_info.name)
69+
site.plugin_manager.activatePluginByName(plugin_installer_info.name)
7070
plugin_installer_info.plugin_object.set_site(site)
7171
plugin_installer = plugin_installer_info.plugin_object
7272
# Try to install the requested plugin

0 commit comments

Comments
 (0)
Please sign in to comment.