Skip to content

Commit

Permalink
Bad copy'n'pasting.
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfontein committed Jan 15, 2017
1 parent 48ab72f commit 7ae7b38
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nikola/nikola.py
Expand Up @@ -932,8 +932,8 @@ def __init__(self, **config):
if hasattr(f, 'configuration_variables'):
args = {}
for arg, config in f.configuration_variables.items():
if config in site.config:
args[arg] = site.config[config]
if config in self.config:
args[arg] = self.config[config]
if args:
actions[i] = functools.partial(f, **args)

Expand Down

0 comments on commit 7ae7b38

Please sign in to comment.