diff --git a/maker_domains.py b/maker_domains.py index 31fd9f5..377e3d1 100644 --- a/maker_domains.py +++ b/maker_domains.py @@ -12,7 +12,6 @@ def linecounter(incoming): pass return i + 1 - def domainsbuilding(excluded ,incoming): ankstanop = linecounter(incoming) with open(excluded ,'r') as f: @@ -23,7 +22,7 @@ def domainsbuilding(excluded ,incoming): f.write('# Title : Minoplhy Personal Blocklist\n') f.write('# Description : My Very Personal DNS Blocklist plus crawling from the source\n') f.write('# Source : Resources/Source.txt\n') - f.write('# Rule Counter : ' + str(ankstanop) +' Rules\n') + f.write('# Rule Counter : ' + str(linecounter(incoming)) +' Rules\n') f.write('# Format : Domains\n') f.write('# Licenses : MIT\n') f.write('# Compiled Date : ' + str(date) +'\n\n')