Update configuration code examples
MarkPaulin opened this issue · 0 comments
MarkPaulin commented
The python code examples in configuration chapter need updating.
- Using
yaml.load(file)
is deprecated, see here. - On line 243,
sys.argv < 2
should belen(sys.argv) < 2
.
Happy to submit a PR to fix these.