Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
correct reference to self
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffbryner committed Jul 17, 2018
1 parent 19b24f3 commit 91acafe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cron/createFDQNBlockList.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def initConfig():
options.mongoport = getConfig('mongoport', 3001, options.configfile)

# FQDN whitelist as a \n separted file of example.com or foo.bar.com style names
self.options.fqdn_whitelist_file = getConfig('fqdn_whitelist_file', '/dev/null', self.configfile)
options.fqdn_whitelist_file = getConfig('fqdn_whitelist_file', '/dev/null', options.configfile)
options.fqdnwhitelist = parse_fqdn_whitelist(options.fqdn_whitelist_file)

# Output File Name
Expand Down

0 comments on commit 91acafe

Please sign in to comment.