comparison mercurial/hgweb/protocol.py @ 30366:038547a14d85

protocol: drop unused import of zlib Something weird is happening that breaks pyflakes installed via 'pip install --user'. I haven't had a chance to finish debugging this, but this at least fixes the build.
author Augie Fackler <augie@google.com>
date Thu, 10 Nov 2016 15:14:05 -0500
parents 38130a0bbb99
children 2add671bf55b
comparison
equal deleted inserted replaced
30365:5564fcd031df 30366:038547a14d85
6 # GNU General Public License version 2 or any later version. 6 # GNU General Public License version 2 or any later version.
7 7
8 from __future__ import absolute_import 8 from __future__ import absolute_import
9 9
10 import cgi 10 import cgi
11 import zlib
12 11
13 from .common import ( 12 from .common import (
14 HTTP_OK, 13 HTTP_OK,
15 ) 14 )
16 15