diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2019-01-02 01:15:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-02 01:15:15 +0100 |
commit | 8540d5390e70388625ee006562b450efa924113b (patch) | |
tree | 8c7b1ad8515707bf697fc8a0b4944aa5c1ca3c60 /lib | |
parent | aca195367eac8dc9149d4f71d53572ddb4fe2d3b (diff) | |
download | spack-8540d5390e70388625ee006562b450efa924113b.tar.gz spack-8540d5390e70388625ee006562b450efa924113b.tar.bz2 spack-8540d5390e70388625ee006562b450efa924113b.tar.xz spack-8540d5390e70388625ee006562b450efa924113b.zip |
Removed an extra comma after a dict literal (#10236)
The extra comma was turning a dict into a tuple, and caused errors
during validation of the schema.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/schema/modules.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/schema/modules.py b/lib/spack/spack/schema/modules.py index 6b107d9861..0c9b14a8c5 100644 --- a/lib/spack/spack/schema/modules.py +++ b/lib/spack/spack/schema/modules.py @@ -78,7 +78,7 @@ module_file_configuration = { } } } -}, +} module_type_configuration = { 'type': 'object', |