Fix fetch() method. Was being called with "wrong" arguments, raising exception. (#1916)

DIYFetchBugfix
This commit is contained in:
Elizabeth Fischer 2016-10-06 05:40:24 -04:00 committed by Todd Gamblin
parent 264604df3e
commit 3de3664671

View File

@ -542,7 +542,7 @@ def __exit__(self, exc_type, exc_val, exc_tb):
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):