diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a76320e..fa6222af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,6 +22,7 @@ - Fixes to configs for troubleshooting lesson [#303](https://github.com/nre-learning/nrelabs-curriculum/pull/303) - Downgrade netmiko since utility is still python2 [#301](https://github.com/nre-learning/nrelabs-curriculum/pull/301) - Fix Terraform diagram [#305](https://github.com/nre-learning/nrelabs-curriculum/pull/305) +- Final fixes for v1.1.0 [#306](https://github.com/nre-learning/nrelabs-curriculum/pull/306) ## v1.0.0 - August 08, 2019 diff --git a/lessons/fundamentals/lesson-14-yaml/stage2/guide.md b/lessons/fundamentals/lesson-14-yaml/stage2/guide.md index 0b8b1c0f..e9e2ccdc 100644 --- a/lessons/fundamentals/lesson-14-yaml/stage2/guide.md +++ b/lessons/fundamentals/lesson-14-yaml/stage2/guide.md @@ -20,7 +20,7 @@ python import yaml import sys yamlFile = open('basicdict.yaml', 'r') -yamlList = yaml.load(yamlFile, Loader=yaml.FullLoader) +yamlDict = yaml.load(yamlFile, Loader=yaml.FullLoader) ``` @@ -53,7 +53,7 @@ YAML and Python are quite liberal with the types that can be stored in a diction
yamlFile = open('complexdict.yaml', 'r') -yamlList = yaml.load(yamlFile, Loader=yaml.FullLoader) +yamlDict = yaml.load(yamlFile, Loader=yaml.FullLoader) for key, value in yamlDict.items(): print("The key %s is of type %s and its value %s is of type %s" % (key, type(key), value, type(value))) diff --git a/lessons/fundamentals/lesson-16-jinja/stage4/guide.md b/lessons/fundamentals/lesson-16-jinja/stage4/guide.md index 7dfee0fa..d469f246 100644 --- a/lessons/fundamentals/lesson-16-jinja/stage4/guide.md +++ b/lessons/fundamentals/lesson-16-jinja/stage4/guide.md @@ -40,7 +40,7 @@ The below snippet is used to import the data from the YAML file to our python co ``` yaml_file = open('part4.yml', 'r') -all_devices = yaml.load(yaml_file) +all_devices = yaml.load(yaml_file, Loader=yaml.FullLoader) pprint(all_devices) ``` diff --git a/lessons/fundamentals/lesson-50-bash/stage4/guide.md b/lessons/fundamentals/lesson-50-bash/stage4/guide.md index f250c233..85a75804 100644 --- a/lessons/fundamentals/lesson-50-bash/stage4/guide.md +++ b/lessons/fundamentals/lesson-50-bash/stage4/guide.md @@ -57,5 +57,5 @@ Now let's run it with just three parameters to see what happens. -Excellent! Now let's try another way you can pass parameters to a BASH script with the 'getopts' builtin BASH utility. +Excellent! In future sections, we'll look at other ways you can pass parameters to a BASH script with the 'getopts' builtin BASH utility. diff --git a/lessons/tools/lesson-13-napalm/lesson.meta.yaml b/lessons/tools/lesson-13-napalm/lesson.meta.yaml index ed46c942..b0ecda03 100644 --- a/lessons/tools/lesson-13-napalm/lesson.meta.yaml +++ b/lessons/tools/lesson-13-napalm/lesson.meta.yaml @@ -44,5 +44,7 @@ stages: - id: 4 description: Make configuration changes with NAPALM jupyterLabGuide: true - verifyCompleteness: true - verifyObjective: "Modify and re-execute the code in the Jupyter notebook so that the description for em1.0 exactly reads: 'Hello, World!'" + + # This feature is not ready for primetime, so we're removing it for now. + # verifyCompleteness: true + # verifyObjective: "Modify and re-execute the code in the Jupyter notebook so that the description for em1.0 exactly reads: 'Hello, World!'"