diff options
author | Massimiliano Culpo <massimiliano.culpo@googlemail.com> | 2017-01-31 16:48:57 +0100 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2017-01-31 10:48:57 -0500 |
commit | 2babe4e4ff0a3c684193daa7722c30140214610d (patch) | |
tree | 247f72d33c7c14164d9ef6a304b1cf8a620b861c /lib | |
parent | d46a1eadcd1d1b6bb6165a8f6e9cfda734e7458c (diff) | |
download | spack-2babe4e4ff0a3c684193daa7722c30140214610d.tar.gz spack-2babe4e4ff0a3c684193daa7722c30140214610d.tar.bz2 spack-2babe4e4ff0a3c684193daa7722c30140214610d.tar.xz spack-2babe4e4ff0a3c684193daa7722c30140214610d.zip |
removed call syntax from property fixes #2944 (#2945)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/build_systems/python.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/build_systems/python.py b/lib/spack/spack/build_systems/python.py index 60a850d356..d2ee72925d 100644 --- a/lib/spack/spack/build_systems/python.py +++ b/lib/spack/spack/build_systems/python.py @@ -112,7 +112,7 @@ class PythonPackage(PackageBase): def setup_py(self, *args): setup = self.setup_file() - with working_dir(self.build_directory()): + with working_dir(self.build_directory): self.python(setup, '--no-user-cfg', *args) # The following phases and their descriptions come from: |