You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 25, 2024. It is now read-only.
With django-google-storages I receive "No module named Select" error when trying to view the files with filebrowser_safe. I know the c modules are not available in the App Engine. I was hoping someone had a workaround...
The text was updated successfully, but these errors were encountered:
Following the stacktrace, filebrowser is calling listdir which is going to django/core/files/storage.py method:
class DefaultStorage(LazyObject):
def _setup(self):
self._wrapped = get_storage_class()()
default_storage = DefaultStorage()
Then in the get_storage_class it tries to import_module('django-google-storage.storage') which is where I receive the error:
Error importing storage module django-google-storage.storage: "No module named select"
With django-google-storages I receive "No module named Select" error when trying to view the files with filebrowser_safe. I know the c modules are not available in the App Engine. I was hoping someone had a workaround...
The text was updated successfully, but these errors were encountered: