changeset 30478:f7d66746ec18

bugzilla: stop mentioning Pythons older than 2.6 We don't support those anyway.
author Augie Fackler <augie@google.com>
date Mon, 21 Nov 2016 17:52:32 -0500
parents d2c40510104e
children 798bcb1274dd
files hgext/bugzilla.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/bugzilla.py	Mon Nov 21 17:51:39 2016 -0500
+++ b/hgext/bugzilla.py	Mon Nov 21 17:52:32 2016 -0500
@@ -571,9 +571,9 @@
         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: