Drop the verbose flag.
This commit is contained in:
@@ -48,7 +48,7 @@ class ArchiveFetcher(object):
|
|||||||
resp = self._session.get(url, stream=True)
|
resp = self._session.get(url, stream=True)
|
||||||
|
|
||||||
tar = subprocess.Popen(
|
tar = subprocess.Popen(
|
||||||
['tar', '--extract', '--verbose'],
|
['tar', '--extract'],
|
||||||
stdin=subprocess.PIPE,
|
stdin=subprocess.PIPE,
|
||||||
cwd=dest_dir)
|
cwd=dest_dir)
|
||||||
for data in resp.iter_content(self._BUF_SIZE):
|
for data in resp.iter_content(self._BUF_SIZE):
|
||||||
|
|||||||
Reference in New Issue
Block a user