From f85a5534a4960ab81e40d28ada1c4b47b8d9b244 Mon Sep 17 00:00:00 2001 From: Pravin Pratap Date: Sat, 18 Nov 2017 00:36:49 +0530 Subject: [PATCH] Updated import statement typo. Wrongly imported 'http2.py' instead of 'http.py'. Fixed. --- process_http.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/process_http.py b/process_http.py index ec20d5f..3043cca 100644 --- a/process_http.py +++ b/process_http.py @@ -1,11 +1,11 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -import gettor.http2 +import gettor.http def main(): - api = gettor.http2.HTTP('http.cfg') + api = gettor.http.HTTP('http.cfg') api.load_data() # api.run() api.build()