File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ Features
11
11
Bugfixes
12
12
--------
13
13
14
+ * Don't use deprecated Yapsy methods (Isue #1868)
14
15
* Surpress wincing when auto is aborted during rebuilding
15
16
* Show tags only from the current language on tag listing pages (Issue #1856)
16
17
* Remove gap between line numbers and code (Issue #1859)
Original file line number Diff line number Diff line change @@ -677,7 +677,7 @@ def __init__(self, **config):
677
677
"ConfigPlugin" : ConfigPlugin ,
678
678
"PostScanner" : PostScanner ,
679
679
})
680
- self .plugin_manager .setPluginInfoExtension ('plugin' )
680
+ self .plugin_manager .getPluginLocator (). setPluginInfoExtension ('plugin' )
681
681
extra_plugins_dirs = self .config ['EXTRA_PLUGINS_DIRS' ]
682
682
if sys .version_info [0 ] == 3 :
683
683
places = [
@@ -692,7 +692,7 @@ def __init__(self, **config):
692
692
os .path .expanduser ('~/.nikola/plugins' ),
693
693
] + [utils .sys_encode (path ) for path in extra_plugins_dirs if path ]
694
694
695
- self .plugin_manager .setPluginPlaces (places )
695
+ self .plugin_manager .getPluginLocator (). setPluginPlaces (places )
696
696
self .plugin_manager .collectPlugins ()
697
697
698
698
self ._activate_plugins_of_category ("SignalHandler" )
You can’t perform that action at this time.
0 commit comments