summaryrefslogtreecommitdiff
path: root/var/spack/repos/builder.test/packages/old-style-autotools/package.py
diff options
context:
space:
mode:
Diffstat (limited to 'var/spack/repos/builder.test/packages/old-style-autotools/package.py')
-rw-r--r--var/spack/repos/builder.test/packages/old-style-autotools/package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builder.test/packages/old-style-autotools/package.py b/var/spack/repos/builder.test/packages/old-style-autotools/package.py
index 41be49b5ba..4ace870768 100644
--- a/var/spack/repos/builder.test/packages/old-style-autotools/package.py
+++ b/var/spack/repos/builder.test/packages/old-style-autotools/package.py
@@ -31,7 +31,7 @@ class OldStyleAutotools(AutotoolsPackage):
"""This override a function in the builder and construct the result using a method
defined in this class and a super method defined in the builder.
"""
- return [self.foo()] + super(OldStyleAutotools, self).configure_args()
+ return [self.foo()] + super().configure_args()
def foo(self):
return "--with-foo"