Patch all style errors in updateHostsFile.py
authorgfyoung <redacted>
Mon, 15 May 2017 19:00:16 +0000 (15:00 -0400)
committergfyoung <redacted>
Mon, 15 May 2017 19:00:16 +0000 (15:00 -0400)
updateHostsFile.py

index ab70933165e285e068eb43f6cb8c09a5b50ac132..b9a0ddd204ebbe76259b407d3e3a10037352f5ae 100644 (file)
@@ -6,9 +6,6 @@
 # This Python script will combine all the host files you provide
 # as sources into one, unique host file to keep you internet browsing happy.
 
-# pylint: disable=invalid-name
-# pylint: disable=bad-whitespace
-
 from __future__ import (absolute_import, division,
                         print_function, unicode_literals)
 from glob import glob
@@ -61,46 +58,72 @@ def list_dir_no_hidden(path):
 BASEDIR_PATH = os.path.dirname(os.path.realpath(__file__))
 
 defaults = {
-    "numberofrules" : 0,
-    "datapath" : os.path.join(BASEDIR_PATH, "data"),
-    "freshen" : True,
-    "replace" : False,
-    "backup" : False,
+    "numberofrules": 0,
+    "datapath": os.path.join(BASEDIR_PATH, "data"),
+    "freshen": True,
+    "replace": False,
+    "backup": False,
     "skipstatichosts": False,
     "keepdomaincomments": False,
-    "extensionspath" : os.path.join(BASEDIR_PATH, "extensions"),
-    "extensions" : [],
-    "outputsubfolder" : "",
-    "hostfilename" : "hosts",
-    "targetip" : "0.0.0.0",
-    "ziphosts" : False,
-    "sourcedatafilename" : "update.json",
+    "extensionspath": os.path.join(BASEDIR_PATH, "extensions"),
+    "extensions": [],
+    "outputsubfolder": "",
+    "hostfilename": "hosts",
+    "targetip": "0.0.0.0",
+    "ziphosts": False,
+    "sourcedatafilename": "update.json",
     "sourcesdata": [],
-    "readmefilename" : "readme.md",
-    "readmetemplate" : os.path.join(BASEDIR_PATH, "readme_template.md"),
-    "readmedata" : {},
-    "readmedatafilename" : os.path.join(BASEDIR_PATH, "readmeData.json"),
-    "exclusionpattern" : "([a-zA-Z\d-]+\.){0,}",
-    "exclusionregexs" : [],
-    "exclusions" : [],
-    "commonexclusions" : ["hulu.com"],
-    "blacklistfile" : os.path.join(BASEDIR_PATH, "blacklist"),
-    "whitelistfile" : os.path.join(BASEDIR_PATH, "whitelist")}
+    "readmefilename": "readme.md",
+    "readmetemplate": os.path.join(BASEDIR_PATH, "readme_template.md"),
+    "readmedata": {},
+    "readmedatafilename": os.path.join(BASEDIR_PATH, "readmeData.json"),
+    "exclusionpattern": "([a-zA-Z\d-]+\.){0,}",
+    "exclusionregexs": [],
+    "exclusions": [],
+    "commonexclusions": ["hulu.com"],
+    "blacklistfile": os.path.join(BASEDIR_PATH, "blacklist"),
+    "whitelistfile": os.path.join(BASEDIR_PATH, "whitelist")}
 
 
 def main():
-    parser = argparse.ArgumentParser(description="Creates a unified hosts file from hosts stored in data subfolders.")
-    parser.add_argument("--auto", "-a", dest="auto", default=False, action="store_true", help="Run without prompting.")
-    parser.add_argument("--backup", "-b", dest="backup", default=False, action="store_true", help="Backup the hosts files before they are overridden.")
-    parser.add_argument("--extensions", "-e", dest="extensions", default=[], nargs="*", help="Host extensions to include in the final hosts file.")
-    parser.add_argument("--ip", "-i", dest="targetip", default="0.0.0.0", help="Target IP address. Default is 0.0.0.0.")
-    parser.add_argument("--keepdomaincomments", "-k", dest="keepdomaincomments", default=False, help="Keep domain line comments.")
-    parser.add_argument("--zip", "-z", dest="ziphosts", default=False, action="store_true", help="Additionally create a zip archive of the hosts file.")
-    parser.add_argument("--noupdate", "-n", dest="noupdate", default=False, action="store_true", help="Don't update from host data sources.")
-    parser.add_argument("--skipstatichosts", "-s", dest="skipstatichosts", default=False, action="store_true", help="Skip static localhost entries in the final hosts file.")
-    parser.add_argument("--output", "-o", dest="outputsubfolder", default="", help="Output subfolder for generated hosts file.")
-    parser.add_argument("--replace", "-r", dest="replace", default=False, action="store_true", help="Replace your active hosts file with this new hosts file.")
-    parser.add_argument("--flush-dns-cache", "-f", dest="flushdnscache", default=False, action="store_true", help="Attempt to flush DNS cache after replacing the hosts file.")
+    parser = argparse.ArgumentParser(description="Creates a unified hosts "
+                                                 "file from hosts stored in "
+                                                 "data subfolders.")
+    parser.add_argument("--auto", "-a", dest="auto", default=False,
+                        action="store_true", help="Run without prompting.")
+    parser.add_argument("--backup", "-b", dest="backup", default=False,
+                        action="store_true", help="Backup the hosts "
+                                                  "files before they "
+                                                  "are overridden.")
+    parser.add_argument("--extensions", "-e", dest="extensions", default=[],
+                        nargs="*", help="Host extensions to include "
+                                        "in the final hosts file.")
+    parser.add_argument("--ip", "-i", dest="targetip", default="0.0.0.0",
+                        help="Target IP address. Default is 0.0.0.0.")
+    parser.add_argument("--keepdomaincomments", "-k",
+                        dest="keepdomaincomments", default=False,
+                        help="Keep domain line comments.")
+    parser.add_argument("--zip", "-z", dest="ziphosts", default=False,
+                        action="store_true", help="Additionally create "
+                                                  "a zip archive of the "
+                                                  "hosts file.")
+    parser.add_argument("--noupdate", "-n", dest="noupdate", default=False,
+                        action="store_true", help="Don't update from "
+                                                  "host data sources.")
+    parser.add_argument("--skipstatichosts", "-s", dest="skipstatichosts",
+                        default=False, action="store_true",
+                        help="Skip static localhost entries "
+                             "in the final hosts file.")
+    parser.add_argument("--output", "-o", dest="outputsubfolder", default="",
+                        help="Output subfolder for generated hosts file.")
+    parser.add_argument("--replace", "-r", dest="replace", default=False,
+                        action="store_true", help="Replace your active "
+                                                  "hosts file with this "
+                                                  "new hosts file.")
+    parser.add_argument("--flush-dns-cache", "-f", dest="flushdnscache",
+                        default=False, action="store_true",
+                        help="Attempt to flush DNS cache "
+                             "after replacing the hosts file.")
 
     global settings
 
@@ -708,5 +731,6 @@ def print_failure(text):
     print(colorize(text, Colors.FAIL))
 # End Helper Functions
 
+
 if __name__ == "__main__":
     main()
git clone https://git.99rst.org/PROJECT