Simplify get_manifest() signature
authorAntonio Ospite <ospite@studenti.unina.it>
Sat, 19 Oct 2013 10:20:22 +0000 (12:20 +0200)
committerAntonio Ospite <ospite@studenti.unina.it>
Sat, 19 Oct 2013 10:20:22 +0000 (12:20 +0200)
The manifest_file argument is never used, downloading to 'Manifest' is
just fine.

smooth-dl.py

index 16ee966..91b4ec2 100755 (executable)
@@ -92,8 +92,7 @@ def write_wav_header(out_file, fmt, codec_private_data, data_len):
     out_file.write(struct.pack('<L', data_len))
 
 
     out_file.write(struct.pack('<L', data_len))
 
 
-def get_manifest(base_url, dest_dir=tempfile.gettempdir(),
-        manifest_file='Manifest'):
+def get_manifest(base_url, dest_dir=tempfile.gettempdir()):
     """Returns the manifest and the new URL if this is changed"""
 
     if os.path.exists(dest_dir) == False:
     """Returns the manifest and the new URL if this is changed"""
 
     if os.path.exists(dest_dir) == False:
@@ -108,7 +107,7 @@ def get_manifest(base_url, dest_dir=tempfile.gettempdir(),
         response = urllib2.urlopen(manifest_url)
         data = response.read()
 
         response = urllib2.urlopen(manifest_url)
         data = response.read()
 
-        manifest_path = os.path.join(dest_dir, manifest_file)
+        manifest_path = os.path.join(dest_dir, 'Manifest')
         f = open(manifest_path, "w")
         f.write(data)
         f.close()
         f = open(manifest_path, "w")
         f.write(data)
         f.close()