Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Using tuple instead of string to avoid a problem described in #1632.
  • Loading branch information
felixfontein committed Apr 2, 2015
1 parent 5c00a3a commit bf1acd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nikola/__main__.py
Expand Up @@ -329,7 +329,7 @@ def load_tasks(self, cmd, opt_values, pos_args):
}
stages = self.nikola.get_task_stages()
DOIT_CONFIG['default_tasks'] = []
DOIT_CONFIG['minversion'] = '0.27.0'
DOIT_CONFIG['minversion'] = (0, 27, 0)
DOIT_CONFIG['par_type'] = 'thread' # multi-processing won't work with doit's approach of pickling task parameters
tasks = []
previous_stage = None
Expand Down

0 comments on commit bf1acd5

Please sign in to comment.