Explorar o código

[fb] Support upload of tar.gz archive

krish %!s(int64=11) %!d(string=hai) anos
pai
achega
70d15bf15a
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      apps/filebrowser/src/filebrowser/views.py

+ 1 - 1
apps/filebrowser/src/filebrowser/views.py

@@ -1235,7 +1235,7 @@ def _upload_archive(request):
                     raise PopupException(_('Could not extract contents of file.'))
                 # Move the file to where it belongs
                 dest = dest[:-4]
-            elif dest.endswith('.tar.gz'):
+            elif dest.endswith('.tar.gz') or dest.endswith('.tgz'):
                 print uploaded_file
                 temp_path = archive_factory(uploaded_file, 'tgz').extract()
                 if not temp_path: