diff --git a/zeus.py b/zeus.py index c713141..53de25e 100644 --- a/zeus.py +++ b/zeus.py @@ -5,7 +5,10 @@ import time import optparse import subprocess import random -import httplib as http_client +try: + import http.client as http_client # Python 3 +except ImportError: + import httplib as http_client # Python 2 from var import blackwidow from var.google_search import search