From 1f915b7f241145b350f6c58178421f05e1a71014 Mon Sep 17 00:00:00 2001 From: Doug Freed Date: Sat, 18 Jun 2016 14:50:06 -0400 Subject: mitmproxy/models: missed comma in __all__ Spotted by Landscape (thanks @Kriechi for pointing out the site). Add a comma to the last item too, to prevent this from happening in the future and reduce messing up blame later. --- mitmproxy/models/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mitmproxy/models/__init__.py b/mitmproxy/models/__init__.py index ca813567..9bd19723 100644 --- a/mitmproxy/models/__init__.py +++ b/mitmproxy/models/__init__.py @@ -20,6 +20,6 @@ __all__ = [ "make_connect_response", "expect_continue_response", "ClientConnection", "ServerConnection", "Flow", "Error", - "TCPFlow" - "FLOW_TYPES" + "TCPFlow", + "FLOW_TYPES", ] -- cgit v1.2.3