diff --git a/repository-download.py b/repository-download.py index 84a45ed..8c394a6 100755 --- a/repository-download.py +++ b/repository-download.py @@ -158,10 +158,12 @@ def setOptions(self, options): except Exception as e: self.options.update({k: v}) + debug("target: %s" % self.options['target']) + def downloadObjectList(self): if self.options['source'] not in VALID_SOURCES: error("invalid source '%s'" % self.options['source']) - message("Downloading your %s" % self.options['source']) + message("Downloading your %s from %s" % (self.options['source'], self.options['target'])) data = self._requestAuthenticated('GET', "%s/%s" % (TDR_API, self.options['source'])) self.objects = data['result']