upload_static: Put the unmangled files on S3 as well.

This commit is contained in:
Neil Williams
2011-11-15 10:36:33 -08:00
parent 5acbd952ee
commit ab243a7bcd

View File

@@ -20,9 +20,6 @@ def upload(static_root, bucket_name):
for file in files:
absolute_path = os.path.join(root, file)
if os.path.islink(absolute_path):
continue
key_name = os.path.relpath(absolute_path, start=static_root)
type, encoding = mimetypes.guess_type(file)