summaryrefslogtreecommitdiffstats
path: root/repo
diff options
context:
space:
mode:
authorDavid Pursehouse <dpursehouse@collab.net>2018-06-24 16:21:51 +0900
committerDylan Deng <dxx1104@gmail.com>2018-07-24 22:20:08 +0800
commit65b0ba5aa0447f7ee25103828115662b1eb80ff9 (patch)
treedebc2790e91665968a31319f8fe039f4638911a1 /repo
parenta6515fb952ab31a820288ce342e31d2917d0a06c (diff)
downloadgit-repo-65b0ba5aa0447f7ee25103828115662b1eb80ff9.tar.gz
Remove unused pylint suppressions
pylint is not used since bb5b1a0. The pyflakes cleanup mentioned in that commit has not been done, but given that this project is no longer being actively developed I don't think it's worth spending time doing it. Leaving the pylint suppressions causes confusion because it leads people to think that we are still using pylint. Change-Id: If7d9f280a0f408c780f15915ffdb80579ae21f69
Diffstat (limited to 'repo')
-rwxr-xr-xrepo2
1 files changed, 1 insertions, 1 deletions
diff --git a/repo b/repo
index bd3a3f1c..6d3e8c2f 100755
--- a/repo
+++ b/repo
@@ -507,7 +507,7 @@ def _InitHttp():
507 p = n.hosts[host] 507 p = n.hosts[host]
508 mgr.add_password(p[1], 'http://%s/' % host, p[0], p[2]) 508 mgr.add_password(p[1], 'http://%s/' % host, p[0], p[2])
509 mgr.add_password(p[1], 'https://%s/' % host, p[0], p[2]) 509 mgr.add_password(p[1], 'https://%s/' % host, p[0], p[2])
510 except: # pylint: disable=bare-except 510 except:
511 pass 511 pass
512 handlers.append(urllib.request.HTTPBasicAuthHandler(mgr)) 512 handlers.append(urllib.request.HTTPBasicAuthHandler(mgr))
513 handlers.append(urllib.request.HTTPDigestAuthHandler(mgr)) 513 handlers.append(urllib.request.HTTPDigestAuthHandler(mgr))