We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
While the project has always required Django>=1.8, most of the backend has been compatible with earlier versions of Django.
Changes introduced in 148e910 (released in 0.3.0) added the max_length kwarg, which does not exist in earlier versions of Django.
max_length
To continue using the backend on earlier versions of Django, override the get_available_name method to remove the max_length kwarg:
get_available_name
def get_available_name(self, name): if self.allow_overwrite: return name return super(GoogleCloudStorage, self).get_available_name(name)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
While the project has always required Django>=1.8, most of the backend has been compatible with earlier versions of Django.
Changes introduced in 148e910 (released in 0.3.0) added the
max_length
kwarg, which does not exist in earlier versions of Django.To continue using the backend on earlier versions of Django, override the
get_available_name
method to remove themax_length
kwarg:The text was updated successfully, but these errors were encountered: