From 7a42e2a5f595466d0632cd2f8cd1893b88866619 Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Tue, 1 Apr 2025 13:36:17 +0200 Subject: [PATCH] Remove suburl support in test_auth.py This was removed from actual community auth a very long time ago (in 2013, in commit 78de94d1). --- tools/communityauth/test_auth.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tools/communityauth/test_auth.py b/tools/communityauth/test_auth.py index 746a8ef5..ea6d1fa1 100755 --- a/tools/communityauth/test_auth.py +++ b/tools/communityauth/test_auth.py @@ -21,7 +21,6 @@ if __name__ == "__main__": parser.add_option("-f", "--first", dest="first") parser.add_option("-l", "--last", dest="last") parser.add_option("-e", "--email", dest="email") - parser.add_option("-s", "--suburl", dest="suburl") (options, args) = parser.parse_args() @@ -47,8 +46,6 @@ if __name__ == "__main__": 'l': options.last, 'e': options.email, } - if options.suburl: - info['su'] = options.suburl # Turn this into an URL. Make sure the timestamp is always first, that makes # the first block more random.. -- 2.39.5