aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mediagoblin/gmg_commands/batchaddmedia.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/gmg_commands/batchaddmedia.py b/mediagoblin/gmg_commands/batchaddmedia.py
index f50425f3..61a068d2 100644
--- a/mediagoblin/gmg_commands/batchaddmedia.py
+++ b/mediagoblin/gmg_commands/batchaddmedia.py
@@ -151,7 +151,7 @@ zip files and directories"
filename = url.path.split()[-1]
if url.scheme == 'http':
- res = requests.get(url.geturl())
+ res = requests.get(url.geturl(), stream=True)
media_file = res.raw
elif url.scheme == '':