root cause of: sequence item 0: expected str instance, NoneType found ? #3387
-
I'm trying to integrate boto3 according to this blogpost https://www.codingforentrepreneurs.com/blog/django-static-files-digitalocean-spaces/ . When running
What is the problem in this case? I've searched a lot but couldn't manage to find anything... |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Hi @Dotolox, thanks for reaching out. I found a couple similar issues on stackOverflow listed below and the possible cause mentioned in those posts is because of the lack of return from a function or join method which simply returns
Let me know if any of this helps. If you're still having issue, please share your code snippet with any sensitive information redacted. |
Beta Was this translation helpful? Give feedback.
-
having the same issue from botocore. seem like a problem with botocore. currently using latest version of django-storages and boto related packages. using digitalocean spaces as storage. previous server works, once change to new server (ubuntu 22, same code base, nothing change), this issue happened. |
Beta Was this translation helpful? Give feedback.
-
have you found the underlying problem? thanks in advance |
Beta Was this translation helpful? Give feedback.
Hi @Dotolox, thanks for reaching out.
I found a couple similar issues on stackOverflow listed below and the possible cause mentioned in those posts is because of the lack of return from a function or join method which simply returns
None
.Let me know if any of this helps. If you're still having issue, please share your code snippet with any sensitive information redacted.