diff options
author | Mario Melara <maamelara@gmail.com> | 2016-06-06 09:06:58 -0700 |
---|---|---|
committer | Mario Melara <maamelara@gmail.com> | 2016-06-06 09:06:58 -0700 |
commit | 864191b6ed9fbd95e549b2f4852dc92113c6a190 (patch) | |
tree | c6157d13b4bd1ff461fb6c539a5c06c1586fa90e | |
parent | 5b023bb0a1b2eef9d950cb660b466d2ab0e04349 (diff) | |
download | spack-864191b6ed9fbd95e549b2f4852dc92113c6a190.tar.gz spack-864191b6ed9fbd95e549b2f4852dc92113c6a190.tar.bz2 spack-864191b6ed9fbd95e549b2f4852dc92113c6a190.tar.xz spack-864191b6ed9fbd95e549b2f4852dc92113c6a190.zip |
Got rid of unnecessary global keyword
-rw-r--r-- | lib/spack/spack/test/mock_packages_test.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/spack/spack/test/mock_packages_test.py b/lib/spack/spack/test/mock_packages_test.py index 561f319b16..9c586bd8ce 100644 --- a/lib/spack/spack/test/mock_packages_test.py +++ b/lib/spack/spack/test/mock_packages_test.py @@ -40,7 +40,6 @@ linux_os_name = 'debian' linux_os_version = '6' if platform.name == 'linux': - global linux_os_name, linux_os_version linux_os = platform.operating_system("default_os") linux_os_name = linux_os.name linux_os_version = linux_os.version |