diff options
author | Elizabeth Fischer <rpf2116@columbia.edu> | 2016-10-06 05:40:24 -0400 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2016-10-06 02:40:24 -0700 |
commit | 3de3664671409d9045fc6d907a053f547391ddce (patch) | |
tree | 45e49fcc434e982cbf0e8b15da0f3c9dc7a6bcd5 | |
parent | 264604df3e8b18496848a3b57772890b3e189b6b (diff) | |
download | spack-3de3664671409d9045fc6d907a053f547391ddce.tar.gz spack-3de3664671409d9045fc6d907a053f547391ddce.tar.bz2 spack-3de3664671409d9045fc6d907a053f547391ddce.tar.xz spack-3de3664671409d9045fc6d907a053f547391ddce.zip |
Fix fetch() method. Was being called with "wrong" arguments, raising exception. (#1916)
DIYFetchBugfix
-rw-r--r-- | lib/spack/spack/stage.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/stage.py b/lib/spack/spack/stage.py index 01e069ded1..1b12966bc1 100644 --- a/lib/spack/spack/stage.py +++ b/lib/spack/spack/stage.py @@ -542,7 +542,7 @@ class DIYStage(object): def chdir_to_source(self): self.chdir() - def fetch(self, mirror_only): + def fetch(self, *args, **kwargs): tty.msg("No need to fetch for DIY.") def check(self): |