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
The FSF is remote as of 1 September, so the wrong address check should also check for the now-former address:
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
The text was updated successfully, but these errors were encountered:
Right now we're just checking this regex for FSF wrong address:
fsf_wrong_address_regex = re.compile(br'(675\s+Mass\s+Ave|59\s+Temple\s+Place|02139)', re.IGNORECASE)
So if I understand correctly we should also add that line to the regex to be something like:
fsf_wrong_address_regex = re.compile(br'(675\s+Mass\s+Ave|59\s+Temple\s+Place|02139|51\s+Franklin\s+Street)', re.IGNORECASE)
Sorry, something went wrong.
That seems reasonable to me.
No branches or pull requests
The FSF is remote as of 1 September, so the wrong address check should also check for the now-former address:
The text was updated successfully, but these errors were encountered: