Skip to content

Commit

Permalink
Simplified code.
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfontein committed Apr 1, 2017
1 parent e0b1d5b commit 6fcffe3
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions nikola/nikola.py
Expand Up @@ -1047,10 +1047,7 @@ def init_plugins(self, commands_only=False, load_all=False):
self.config['COMPILERS'] = {}
self.disabled_compilers = {}
self.disabled_compiler_extensions = defaultdict(list)
self.bad_compilers = set([])
for k, v in compilers.items():
# self.config['COMPILERS'][k] = sorted(list(v))
self.bad_compilers.add(k)
self.bad_compilers = set(compilers.keys())

self.plugin_manager.getPluginLocator().setPluginPlaces(self._plugin_places)
self.plugin_manager.locatePlugins()
Expand Down

0 comments on commit 6fcffe3

Please sign in to comment.