foundation_security_advisories/update_hof.py [838:846]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                    if not "url" in data and "twitter" in data:
                        data["url"] = "https://twitter.com/" + data["twitter"]

                    hof_entries.append(data)
                    debuglog.write(data["name"] + "," + (data["url"] if 'url' in data else "") + "\n")
                    continue # Go to next bug
                else:
                    debuglog.write("Date wasn't in range\n")
                    continue
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



foundation_security_advisories/update_hof.py [921:929]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            if not "url" in data and "twitter" in data:
                data["url"] = "https://twitter.com/" + data["twitter"]

            hof_entries.append(data)
            debuglog.write(data["name"] + "," + (data["url"] if 'url' in data else "") + "\n")
            continue # Go to next bug (although we're already at the end of the loop.)
        else:
            debuglog.write("Date wasn't in range\n")
            continue
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



