diff options
author | Florian Pritz <bluewind@xssn.at> | 2010-01-01 22:33:09 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xssn.at> | 2010-01-01 22:33:09 +0100 |
commit | e2718a6f416d9e1feeca422f90ae09ce3f07e24e (patch) | |
tree | d2eb4d21aa4d12d07376f38f0b043aae2c5522a0 /fb | |
parent | 4ac4b115aed79fefc16989164bdab7d84e4b9193 (diff) | |
download | bin-e2718a6f416d9e1feeca422f90ae09ce3f07e24e.tar.gz bin-e2718a6f416d9e1feeca422f90ae09ce3f07e24e.tar.xz |
fb: use curl instead of wget
Signed-off-by: Florian Pritz <bluewind@xssn.at>
Diffstat (limited to 'fb')
-rwxr-xr-x | fb | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -115,7 +115,7 @@ def main(): if re.match('[a-z]+://.+', arg): os.chdir(tmpdir) tmpfiles.append(tmpdir) - Popen(['wget', '-q', arg]).communicate()[0] + Popen(['curl', '-#', '-O', arg]).communicate()[0] for file in os.listdir(tmpdir): do_upload(file, extension=options.extension) else: |