Remove unmatched triple quotes (#18272)

This commit is contained in:
Adam J. Stewart 2020-08-31 06:05:07 -05:00 committed by GitHub
parent 86eac24f36
commit f4a37b2dc2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -70,6 +70,6 @@ def python(parser, args, unknown_args):
# Provides readline support, allowing user to use arrow keys # Provides readline support, allowing user to use arrow keys
console.push('import readline') console.push('import readline')
console.interact("Spack version %s\nPython %s, %s %s""" console.interact("Spack version %s\nPython %s, %s %s"
% (spack.spack_version, platform.python_version(), % (spack.spack_version, platform.python_version(),
platform.system(), platform.machine())) platform.system(), platform.machine()))

View File

@ -11,7 +11,7 @@ class Pcre2(AutotoolsPackage):
libraries. These are useful for implementing regular expression libraries. These are useful for implementing regular expression
pattern matching using the same syntax and semantics as Perl 5.""" pattern matching using the same syntax and semantics as Perl 5."""
homepage = "http://www.pcre.org""" homepage = "http://www.pcre.org"
url = "https://ftp.pcre.org/pub/pcre/pcre2-10.31.tar.bz2" url = "https://ftp.pcre.org/pub/pcre/pcre2-10.31.tar.bz2"
version('10.35', sha256='9ccba8e02b0ce78046cdfb52e5c177f0f445e421059e43becca4359c669d4613') version('10.35', sha256='9ccba8e02b0ce78046cdfb52e5c177f0f445e421059e43becca4359c669d4613')

View File

@ -9,7 +9,7 @@
class PySnuggs(PythonPackage): class PySnuggs(PythonPackage):
"""Snuggs are s-expressions for Numpy""" """Snuggs are s-expressions for Numpy"""
homepage = "https://github.com/mapbox/snuggs""" homepage = "https://github.com/mapbox/snuggs"
url = "https://github.com/mapbox/snuggs/archive/1.4.1.zip" url = "https://github.com/mapbox/snuggs/archive/1.4.1.zip"
version('1.4.1', sha256='b37ed4e11c5f372695dc6fe66fce6cede124c90a920fe4726c970c9293b71233') version('1.4.1', sha256='b37ed4e11c5f372695dc6fe66fce6cede124c90a920fe4726c970c9293b71233')