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
Hi Looks like S2MSI2Ap is no longer available and stops in may.
To avoid the problem you have to specify the product S2MSI2A without p that means preview.
replacing the code
if producttype !=None: query_producttype=" producttype:%s "%producttype query=query+query_producttype
by:
if producttype !=None: if producttype=="S2MSI2Ap": query_producttype = " (producttype:%s OR producttype:S2MSI2A)" % producttype else: query_producttype=" producttype:%s "%producttype query=query+query_producttype
should be enough.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi Looks like S2MSI2Ap is no longer available and stops in may.
To avoid the problem you have to specify the product S2MSI2A without p that means preview.
replacing the code
by:
should be enough.
The text was updated successfully, but these errors were encountered: