Drop the verbose flag.

This commit is contained in:
Ian Gulliver
2016-04-12 19:47:43 +00:00
parent 5a55f3bb27
commit 45b03b1bc3

View File

@@ -48,7 +48,7 @@ class ArchiveFetcher(object):
resp = self._session.get(url, stream=True)
tar = subprocess.Popen(
['tar', '--extract', '--verbose'],
['tar', '--extract'],
stdin=subprocess.PIPE,
cwd=dest_dir)
for data in resp.iter_content(self._BUF_SIZE):