summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorElizabeth Fischer <rpf2116@columbia.edu>2016-10-06 05:40:24 -0400
committerTodd Gamblin <tgamblin@llnl.gov>2016-10-06 02:40:24 -0700
commit3de3664671409d9045fc6d907a053f547391ddce (patch)
tree45e49fcc434e982cbf0e8b15da0f3c9dc7a6bcd5 /lib
parent264604df3e8b18496848a3b57772890b3e189b6b (diff)
downloadspack-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
Diffstat (limited to 'lib')
-rw-r--r--lib/spack/spack/stage.py2
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):