[gettor/master] Fix a number of flake8 issues.

commit 83d7b1fd154f70eab00d142a356813d1e2cbf393 Author: Philipp Winter <phw@nymity.ch> Date: Thu Aug 1 22:22:11 2019 -0700 Fix a number of flake8 issues. Most importantly, fix our precious ASCII art. --- scripts/add_links_to_db | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/scripts/add_links_to_db b/scripts/add_links_to_db index fce7025..f303691 100755 --- a/scripts/add_links_to_db +++ b/scripts/add_links_to_db @@ -17,15 +17,16 @@ from urllib import request TOR_BROWSER_DOWNLOADS = "https://aus1.torproject.org/torbrowser/update_3/release/downloads.json" + def print_header(): - header = """ + header = r""" __ __ /\ \__ /\ \__ - __ __\ \ ,_\\\ \ ,_\ ____ _ __ + __ __\ \ ,_\\\ \ ,_\ ____ _ __ /'_ `\ /'__`\ \ \/ \ \ \/ / __ `\/\`'__\ /\ \L\ \/\ __/\ \ \_ \ \ \ /\ \L\ \ \ \/ - \ \____ \ \____\\\__\ \ \ \__\ \_____/\ \_\ - \/___L\ \/____/ \/__/ \/__/\/___/ \/_/ + \ \____ \ \____\\ \__\ \ \__\ \_____/\ \_\ + \/___L\ \/____/ \/__/ \/__/\/____/ \/_/ /\_____/ \_/___/ @@ -37,12 +38,14 @@ def print_header(): print("@"*100) print("") + def print_footer(): print("") print("@"*100) print("@"*100) print("") + def main(): parser = argparse.ArgumentParser( description="Tool to create the gettor SQLite database." @@ -69,7 +72,6 @@ def main(): "github": "https://github.com/TheTorProject/gettorbrowser/raw/torbrowser-releases/" } - prefixes = { "osx": "TorBrowser-", "windows": "torbrowser-install-", @@ -94,7 +96,8 @@ def main(): with conn: c = conn.cursor() """ - Here we drop previous links TABLE but probably it would be better to just update old links to INACTIVE + Here we drop previous links TABLE but probably it would be better to + just update old links to INACTIVE """ c.execute("DROP TABLE IF EXISTS links") c.execute( @@ -107,7 +110,7 @@ def main(): release_link = releases.get(k).replace("en-US", l) c.execute( "INSERT INTO links(link, platform, language, arch, version, provider, status)" - "VALUES ('%s', '%s', '%s', '64', '%s', '%s', 'ACTIVE')" %(providers.get(p) + release_link, k, l, version, p)) + "VALUES ('%s', '%s', '%s', '64', '%s', '%s', 'ACTIVE')" % (providers.get(p) + release_link, k, l, version, p)) if __name__ == "__main__":
participants (1)
-
hiro@torproject.org