Updated the documentation with the new compress option.

Removed a redundant skipstatichosts option.
This commit is contained in:
Stefano
2018-01-02 10:51:26 +01:00
parent ff9e05ffec
commit 510109d6d4
2 changed files with 10 additions and 6 deletions

View File

@@ -122,9 +122,10 @@ def main():
default=False, action="store_true",
help="Compress the hosts file "
"ignoring non-necessary lines "
"(empty lines and comments)."
"Improve the performances "
"under Windows.")
"(empty lines and comments) and "
"putting multiple domains in "
"each line. Improve the "
"performances under Windows.")
global settings
@@ -670,7 +671,7 @@ def compress_file(input_file, target_ip, output_file):
lines_index = 0
for line in input_file.readlines():
line = line.decode("UTF-8")
if line.startswith('#') or line.startswith('\n'):
if line.startswith(('#', '\n')):
continue
if line.startswith(target_ip):