# HG changeset patch # User Augie Fackler # Date 2016-11-21 22:52:32 # Node ID f7d66746ec1819eaeadd010e3ace2b6c02b37e18 # Parent d2c40510104ebcac5c838abee7b74c1552cab902 bugzilla: stop mentioning Pythons older than 2.6 We don't support those anyway. diff --git a/hgext/bugzilla.py b/hgext/bugzilla.py --- a/hgext/bugzilla.py +++ b/hgext/bugzilla.py @@ -571,9 +571,9 @@ class cookietransportrequest(object): self.send_user_agent(h) self.send_content(h, request_body) - # Deal with differences between Python 2.4-2.6 and 2.7. + # Deal with differences between Python 2.6 and 2.7. # In the former h is a HTTP(S). In the latter it's a - # HTTP(S)Connection. Luckily, the 2.4-2.6 implementation of + # HTTP(S)Connection. Luckily, the 2.6 implementation of # HTTP(S) has an underlying HTTP(S)Connection, so extract # that and use it. try: